Changeset 7596 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2014-10-04T17:41:26+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
r7509 r7596 44 44 private final Collection<PluginInformation> failed = new LinkedList<>(); 45 45 private final Collection<PluginInformation> downloaded = new LinkedList<>(); 46 private Exception lastException;46 //private Exception lastException; 47 47 private boolean canceled; 48 48 private HttpURLConnection downloadConnection; … … 155 155 File pluginDir = Main.pref.getPluginsDirectory(); 156 156 if (!pluginDir.exists() && !pluginDir.mkdirs()) { 157 lastException = new PluginDownloadException(tr("Failed to create plugin directory ''{0}''", pluginDir.toString()));157 //lastException = new PluginDownloadException(tr("Failed to create plugin directory ''{0}''", pluginDir.toString())); 158 158 failed.addAll(toUpdate); 159 159 return; -
trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java
r7033 r7596 19 19 import org.openstreetmap.josm.io.OsmTransferException; 20 20 import org.openstreetmap.josm.tools.ImageProvider; 21 import org.openstreetmap.josm.tools.Utils;22 21 import org.xml.sax.SAXException; 23 22
Note:
See TracChangeset
for help on using the changeset viewer.