Changeset 3231 in josm for trunk/src


Ignore:
Timestamp:
2010-05-11T09:08:29+02:00 (14 years ago)
Author:
stoecker
Message:

fixed NPE

File:
1 edited

Legend:

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

    r3086 r3231  
    248248            getProgressMonitor().subTask(tr("Processing plugin list from site ''{0}''", site));
    249249            String list = downloadPluginList(site, getProgressMonitor().createSubTaskMonitor(0, false));
    250             if (canceled) return;
     250            if (canceled || list == null) return;
    251251            getProgressMonitor().worked(1);
    252252            cachePluginList(site, list);
Note: See TracChangeset for help on using the changeset viewer.