Changeset 8373 in josm for trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Instruction.java
- Timestamp:
- 2015-05-17T02:40:26+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Instruction.java
r7881 r8373 40 40 if (litValue instanceof Keyword && "none".equals(((Keyword) litValue).val)) { 41 41 this.val = null; 42 } else if ( key.equals(TEXT)) {42 } else if (TEXT.equals(key)) { 43 43 /* Special case for declaration 'text: ...' 44 44 * … … 77 77 value = val; 78 78 } 79 if ( key.equals(ICON_IMAGE) || key.equals(FILL_IMAGE) || key.equals(REPEAT_IMAGE)) {79 if (ICON_IMAGE.equals(key) || FILL_IMAGE.equals(key) || REPEAT_IMAGE.equals(key)) { 80 80 if (value instanceof String) { 81 81 value = new IconReference((String) value, env.source);
Note:
See TracChangeset
for help on using the changeset viewer.
