Changeset 5795 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2013-03-22T21:07:01+01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPreset.java
r5792 r5795 1332 1332 return Collections.singleton(value); 1333 1333 } 1334 1335 @Override 1336 public String toString() { 1337 return "Key [key=" + key + ", value=" + value + ", text=" + text 1338 + ", text_context=" + text_context + ", match=" + match 1339 + "]"; 1340 } 1334 1341 } 1335 1342 … … 1543 1550 if (o instanceof ComboMultiSelect) { 1544 1551 ((ComboMultiSelect) o).addListEntries(listEntries); 1552 } else if (o instanceof Key) { 1553 if (((Key) o).value == null) { 1554 ((Key) o).value = ""; // Fix #8530 1555 } 1545 1556 } 1546 1557 listEntries = new LinkedList<PresetListEntry>();
Note:
See TracChangeset
for help on using the changeset viewer.