Changeset 10922 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2016-08-31T18:44:44+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/preferences/ColorProperty.java
r10824 r10922 21 21 */ 22 22 public ColorProperty(String colName, String defaultValue) { 23 this(colName, ColorHelper.html2color(defaultValue));23 this(colName, defaultValue == null ? null : ColorHelper.html2color(defaultValue)); 24 24 } 25 25
Note:
See TracChangeset
for help on using the changeset viewer.