Skip to content

Commit

Permalink
Fix obfex compilation on latest EAP
Browse files Browse the repository at this point in the history
  • Loading branch information
RedNesto committed Sep 30, 2024
1 parent 283505d commit 9c4c07d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class MappingsTable(private val config: ObfExFacetConfiguration) {
private val model: MappingsFileTableModel,
private val state: MutableList<MappingsTableRow> = model.state,
) : AbstractTableCellEditor() {
private val textField = textFieldWithBrowseButton(null, "Mappings Files", fileDesc, null)
private val textField = textFieldWithBrowseButton(null, fileDesc, null)
private var row: Int = -1

override fun getCellEditorValue(): Any? {
Expand Down Expand Up @@ -308,6 +308,6 @@ class MappingsTable(private val config: ObfExFacetConfiguration) {
return uri
}

private val fileDesc = FileChooserDescriptor(true, false, false, false, false, true)
private val fileDesc = FileChooserDescriptor(true, false, false, false, false, true).withTitle("Mappings Files")
}
}

0 comments on commit 9c4c07d

Please sign in to comment.