Skip to content

Commit 5c2198c

Browse files
remove unused choose method
1 parent 225152e commit 5c2198c

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

sqldev/src/main/java/org/utplsql/sqldev/ui/common/DirectoryChooser.xtend

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ package org.utplsql.sqldev.ui.common
1717

1818
import java.io.File
1919
import java.util.logging.Logger
20-
import javax.swing.JComboBox
2120
import javax.swing.JFileChooser
2221
import javax.swing.JFrame
2322
import javax.swing.JTextField
@@ -46,11 +45,4 @@ class DirectoryChooser {
4645
}
4746
}
4847

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-
5648
}

0 commit comments

Comments
 (0)