- Timestamp:
- 2010-10-24T10:36:52+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetSearchDialog.java
r3581 r3638 121 121 } else if (item instanceof Key) { 122 122 tags.add(((Key) item).key); 123 tags.add(((Key) item).value); 123 String value = ((Key) item).value; 124 if (value != null) { 125 tags.add(value); 126 } 124 127 } else if (item instanceof Text) { 125 128 tags.add(((Text) item).key);
Note:
See TracChangeset
for help on using the changeset viewer.