Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 225152e commit 5c2198cCopy full SHA for 5c2198c
1 file changed
sqldev/src/main/java/org/utplsql/sqldev/ui/common/DirectoryChooser.xtend
@@ -17,7 +17,6 @@ package org.utplsql.sqldev.ui.common
17
18
import java.io.File
19
import java.util.logging.Logger
20
-import javax.swing.JComboBox
21
import javax.swing.JFileChooser
22
import javax.swing.JFrame
23
import javax.swing.JTextField
@@ -46,11 +45,4 @@ class DirectoryChooser {
46
45
}
47
48
49
- def static void choose (JFrame parentFrame, String title, JComboBox<String> comboBox) {
50
- val dir = choose(parentFrame, title, comboBox.editor.item as String);
51
- if (dir !== null) {
52
- comboBox.editor.item = dir
53
- }
54
55
-
56
0 commit comments