- Timestamp:
- 2012-07-12T12:37:06+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r5278 r5327 1485 1485 @Override 1486 1486 protected Collection<String> getString(OsmPrimitive p, String key) { 1487 return Collections.singleton(p.get(key)); 1487 String v = p.get(key); 1488 return v == null ? null : Collections.singleton(v); 1488 1489 } 1489 1490 }
Note:
See TracChangeset
for help on using the changeset viewer.