Changeset 14189 in josm for trunk/src/org
- Timestamp:
- 2018-08-28T20:16:17+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java
r13696 r14189 81 81 String[] x = line.split(";"); 82 82 if (x.length != 2) 83 throw new IOException(tr("Illegal entry in plugin list.") );83 throw new IOException(tr("Illegal entry in plugin list.") + " " + line); 84 84 name = x[0]; 85 85 url = x[1];
Note:
See TracChangeset
for help on using the changeset viewer.