Ignore:
Timestamp:
27.02.2010 15:55:13 (2 years ago)
Author:
stoecker
Message:

don't keep .jar.new for linux, this is only necessary for windows system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreferencesModel.java

    r2990 r3054  
    289289        for (PluginInformation pi : plugins) { 
    290290            File downloadedPluginFile = new File(pluginDir, pi.name + ".jar.new"); 
    291             if (! downloadedPluginFile.exists() && downloadedPluginFile.canRead()) { 
     291            if (!(downloadedPluginFile.exists() && downloadedPluginFile.canRead())) { 
    292292                continue; 
    293293            } 
Note: See TracChangeset for help on using the changeset viewer.