Skip to content

Commit 75f9a67

Browse files
committed
Fix deprecation of ComponentWithBrowseButton.addBrowseFolderListener
See #153
1 parent 2058ccc commit 75f9a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/software/xdev/saveactions/ui/java/IdeSupportPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private TextFieldWithBrowseButton getPath(final String configurationPath)
7878
field.getField().setEnabled(false);
7979
field.getField().setText(configurationPath);
8080
final TextFieldWithBrowseButton resultPath = new TextFieldWithBrowseButton(field.getField());
81-
resultPath.addBrowseFolderListener(null, null, null, descriptor, TEXT_FIELD_WHOLE_TEXT);
81+
resultPath.addBrowseFolderListener(null, descriptor, TEXT_FIELD_WHOLE_TEXT);
8282
return resultPath;
8383
}
8484

0 commit comments

Comments
 (0)