Ignore:
Timestamp:
2013-10-04T03:27:01+02:00 (11 years ago)
Author:
Don-vip
Message:

Sonar/Findbugs - Avoid commented-out lines of code, javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/QuadTiling.java

    r6171 r6296  
    6363   
    6464    static long lon2x(double lon) {
    65         //return Math.round((lon + 180.0) * QuadBuckets.WORLD_PARTS / 360.0)-1;
    6665        long ret = (long)((lon + 180.0) * WORLD_PARTS / 360.0);
    6766        if (ret == WORLD_PARTS) {
     
    7271   
    7372    static long lat2y(double lat) {
    74         //return Math.round((lat + 90.0) * QuadBuckets.WORLD_PARTS / 180.0)-1;
    7573        long ret = (long)((lat + 90.0) * WORLD_PARTS / 180.0);
    7674        if (ret == WORLD_PARTS) {
Note: See TracChangeset for help on using the changeset viewer.