Ignore:
Timestamp:
2014-10-04T17:41:26+02:00 (10 years ago)
Author:
Don-vip
Message:

fix various warnings

Location:
trunk/src/org/openstreetmap/josm/plugins
Files:
2 edited

Legend:

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

    r7509 r7596  
    4444    private final Collection<PluginInformation> failed = new LinkedList<>();
    4545    private final Collection<PluginInformation> downloaded = new LinkedList<>();
    46     private Exception lastException;
     46    //private Exception lastException;
    4747    private boolean canceled;
    4848    private HttpURLConnection downloadConnection;
     
    155155        File pluginDir = Main.pref.getPluginsDirectory();
    156156        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()));
    158158            failed.addAll(toUpdate);
    159159            return;
  • trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java

    r7033 r7596  
    1919import org.openstreetmap.josm.io.OsmTransferException;
    2020import org.openstreetmap.josm.tools.ImageProvider;
    21 import org.openstreetmap.josm.tools.Utils;
    2221import org.xml.sax.SAXException;
    2322
Note: See TracChangeset for help on using the changeset viewer.