File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/main/java/org/scijava/ui/swing/search Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 100100 *
101101 * @author Curtis Rueden
102102 */
103-
104103public class SwingSearchBar extends JTextField {
105104
106105 private static final String DEFAULT_MESSAGE = "Click here to search" ;
@@ -315,7 +314,6 @@ private class SwingSearchPanel extends JPanel {
315314 private SearchResult selected = null ;
316315
317316 public SwingSearchPanel () {
318-
319317 setLayout (new BorderLayout ());
320318 setPreferredSize (new Dimension (800 , 300 ));
321319 setBorder (BorderFactory .createEmptyBorder ());
@@ -594,7 +592,6 @@ private void execute() {
594592 }
595593
596594 private void rebuild () {
597-
598595 assertDispatchThread ();
599596
600597 final SearchResult previous = resultsList .getSelectedValue ();
@@ -607,7 +604,6 @@ private void rebuild() {
607604 // Build the new list model.
608605 final DefaultListModel <SearchResult > listModel = new DefaultListModel <>();
609606 for (final Searcher searcher : searchers ) {
610-
611607 // Look up the results list.
612608 final List <SearchResult > completeResults = //
613609 allResults .get (searcher .getClass ()).results ();
You can’t perform that action at this time.
0 commit comments