Ignore:
Timestamp:
2011-07-01T09:32:56+02:00 (13 years ago)
Author:
stoecker
Message:

remove old debug stuff

File:
1 edited

Legend:

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

    r3158 r4191  
    2525        long shift = (NR_LEVELS*2)-2;
    2626
    27         //if (debug)
    28         //    out("tile2xy(0x"+Long.toHexString(quad)+")");
    2927        double x = 0;
    3028        double y = 0;
    3129        for (int i = 0; i < NR_LEVELS; i++) {
    3230            long bits = (quad >> shift) & 0x3;
    33             //if (debug)
    34             //    out("shift: " + shift + " bits: " + bits);
    3531            // remember x is the MSB
    3632            if ((bits & 0x2) != 0) {
Note: See TracChangeset for help on using the changeset viewer.