Changeset 12491 in josm
- Timestamp:
- 2017-07-22T16:25:54+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/search/SearchCompiler.java
r12489 r12491 1571 1571 Preset(String presetName) throws ParseError { 1572 1572 1573 if (presetName == null || presetName. equals("")) {1573 if (presetName == null || presetName.isEmpty()) { 1574 1574 throw new ParseError("The name of the preset is required"); 1575 1575 } … … 1587 1587 .stream() 1588 1588 .filter(preset -> !(preset instanceof TaggingPresetMenu || preset instanceof TaggingPresetSeparator)) 1589 .filter(preset -> this.presetNameMatch(presetName, preset, matchStrictly))1589 .filter(preset -> presetNameMatch(presetName, preset, matchStrictly)) 1590 1590 .collect(Collectors.toList()); 1591 1591
Note:
See TracChangeset
for help on using the changeset viewer.