Codebase list jd-gui / d20df07
Add capability to search source code on maven.org emmanue1 5 years ago
1 changed file(s) with 1 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
9797
9898 String filters = preferences.get(FILTERS);
9999
100 if ((filters == null) || filters.isEmpty()) {
101 filtersTextArea.setText(DEFAULT_FILTERS_VALUE);
102 }
100 filtersTextArea.setText((filters == null) || filters.isEmpty() ? DEFAULT_FILTERS_VALUE : filters);
103101 }
104102
105103 @Override