Changeset 14189 in josm for trunk/src/org


Ignore:
Timestamp:
2018-08-28T20:16:17+02:00 (6 years ago)
Author:
Don-vip
Message:

better error message in plugin list parser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginListParser.java

    r13696 r14189  
    8181                String[] x = line.split(";");
    8282                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);
    8484                name = x[0];
    8585                url = x[1];
Note: See TracChangeset for help on using the changeset viewer.