Ignore:
Timestamp:
2013-07-26T21:45:36+02:00 (10 years ago)
Author:
akks
Message:

see #8902 - long literals readability 4321l => 4321L (patch by shinigami)

File:
1 edited

Legend:

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

    r6087 r6090  
    281281            long last = Main.pref.getLong("pluginmanager.lastupdate", 0);
    282282            Integer maxTime = Main.pref.getInteger("pluginmanager.time-based-update.interval", DEFAULT_TIME_BASED_UPDATE_INTERVAL);
    283             long d = (tim - last) / (24 * 60 * 60 * 1000l);
     283            long d = (tim - last) / (24 * 60 * 60 * 1000L);
    284284            if ((last <= 0) || (maxTime <= 0)) {
    285285                Main.pref.put("pluginmanager.lastupdate", Long.toString(tim));
Note: See TracChangeset for help on using the changeset viewer.