Changeset 8482 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-06-10T21:00:48+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/TextTagParser.java
r8470 r8482 203 203 // Format 204 204 // tag1\tval1\ntag2\tval2\n 205 tags = readTagsByRegexp(buf, "[\\r\\n]+", ".*([a-zA-Z0-9:_]+).*\\t(.*?)", false); 205 tags = readTagsByRegexp(buf, "[\\r\\n]+", ".*?([a-zA-Z0-9:_]+).*\\t(.*?)", false); 206 206 // try "tag\tvalue\n" format 207 207 if (tags!=null) return tags;
Note:
See TracChangeset
for help on using the changeset viewer.