Changeset 14598 in josm for trunk/src/com/kitfox/svg
- Timestamp:
- 2018-12-23T17:49:06+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/xml/XMLParseUtil.java
r14331 r14598 320 320 } 321 321 322 String key = styles[i].substring(0, colon).trim() ;323 String value = quoteMatch.reset(styles[i].substring(colon + 1).trim()).replaceAll("") ;322 String key = styles[i].substring(0, colon).trim().intern(); 323 String value = quoteMatch.reset(styles[i].substring(colon + 1).trim()).replaceAll("").intern(); 324 324 325 325 map.put(key, new StyleAttribute(key, value));
Note:
See TracChangeset
for help on using the changeset viewer.