Changeset 7324 in josm
- Timestamp:
- 2014-07-21T19:23:12+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetSelector.java
r7322 r7324 327 327 328 328 DataSet ds = Main.main.getCurrentDataSet(); 329 Collection<OsmPrimitive> selected = (ds==null)? Collections. EMPTY_LIST: ds.getSelected();329 Collection<OsmPrimitive> selected = (ds==null)? Collections.<OsmPrimitive>emptyList() : ds.getSelected(); 330 330 final List<PresetClassification> result = classifications.getMatchingPresets( 331 331 text, onlyApplicable, inTags, getTypesInSelection(), selected);
Note:
See TracChangeset
for help on using the changeset viewer.