Changeset 1080 in josm for trunk/src/org/openstreetmap/josm


Ignore:
Timestamp:
2008-11-14T12:12:29+01:00 (15 years ago)
Author:
stoecker
Message:

version check was reversed

File:
1 edited

Legend:

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

    r1073 r1080  
    248248                                if (info.early != early)
    249249                                        continue;
    250                                 if (info.mainversion != null && info.mainversion.compareTo(AboutAction.version) < 0)
     250                                if (info.mainversion != null && info.mainversion.compareTo(AboutAction.version) > 0)
    251251                                {
    252252                                        JOptionPane.showMessageDialog(Main.parent, tr("Plugin requires JOSM update: {0}.", pluginName));
Note: See TracChangeset for help on using the changeset viewer.