Ignore:
Timestamp:
2016-10-08T03:02:51+02:00 (10 years ago)
Author:
Don-vip
Message:

sonar - squid:S2148 - Underscores should be used to make large numbers readable

File:
1 edited

Legend:

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

    r11056 r11100  
    8080
    8181    private static final int MILLIS_OF_SECOND = 1000;
    82     private static final int MILLIS_OF_MINUTE = 60000;
    83     private static final int MILLIS_OF_HOUR = 3600000;
    84     private static final int MILLIS_OF_DAY = 86400000;
     82    private static final int MILLIS_OF_MINUTE = 60_000;
     83    private static final int MILLIS_OF_HOUR = 3_600_000;
     84    private static final int MILLIS_OF_DAY = 86_400_000;
    8585
    8686    /**
Note: See TracChangeset for help on using the changeset viewer.