Changeset 18310 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2021-11-05T01:04:10+01:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java
r17571 r18310 66 66 if (line.startsWith("\t")) { 67 67 final String[] keyValue = line.split("\\s*:\\s*", 2); 68 manifest.put(new Attributes.Name(keyValue[0].substring(1)), keyValue[1]); 68 if (keyValue.length >= 2) 69 manifest.put(new Attributes.Name(keyValue[0].substring(1)), keyValue[1]); 69 70 continue; 70 71 }
Note:
See TracChangeset
for help on using the changeset viewer.