Ignore:
Timestamp:
2010-09-22T10:27:49+02:00 (14 years ago)
Author:
stoecker
Message:

fix NPE

File:
1 edited

Legend:

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

    r3532 r3553  
    218218            for (String entry : classPath.split(" ")) {
    219219                File entryFile;
    220                 if (new File(entry).isAbsolute()) {
     220                if (new File(entry).isAbsolute() || file == null) {
    221221                    entryFile = new File(entry);
    222222                } else {
Note: See TracChangeset for help on using the changeset viewer.