Changeset 4024 in josm


Ignore:
Timestamp:
Apr 15, 2011 12:38:35 PM (2 years ago)
Author:
stoecker
Message:

see #6214 - better errormessage

File:
1 edited

Legend:

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

    r3530 r4024  
    9696                } 
    9797                String x[] = line.split(";"); 
     98                if(x.length != 2) 
     99                  throw new IOException(tr("Illegal entry in plugin list.")); 
    98100                name = x[0]; 
    99101                url = x[1]; 
Note: See TracChangeset for help on using the changeset viewer.