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

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

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/geoimage/CorrelateGpxWithImages.java

    r6084 r6090  
    865865            // Find day difference
    866866            final int dayOffset = (int)Math.round(diffInH / 24); // days
    867             double tmz = diff - dayOffset*24*60*60l;  // seconds
     867            double tmz = diff - dayOffset*24*60*60L;  // seconds
    868868
    869869            // In hours, rounded to two decimal places
     
    10451045            // Find day difference
    10461046            int dayOffset = (int)Math.round(diffInH / 24); // days
    1047             double tz = diff - dayOffset*24*60*60l;  // seconds
     1047            double tz = diff - dayOffset*24*60*60L;  // seconds
    10481048
    10491049            // In hours, rounded to two decimal places
  • trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java

    r6084 r6090  
    156156
    157157        boolean mouseIsDragging = false;
    158         long lastTimeForMousePoint = 0l;
     158        long lastTimeForMousePoint = 0L;
    159159        Point mousePointInImg = null;
    160160
  • trunk/src/org/openstreetmap/josm/gui/mappaint/StyleSource.java

    r5275 r6090  
    2626
    2727    private ImageIcon imageIcon;
    28     private long lastMTime = 0l;
     28    private long lastMTime = 0L;
    2929
    3030    /******
Note: See TracChangeset for help on using the changeset viewer.