Ignore:
Timestamp:
2010-02-27T15:55:13+01:00 (15 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.