Changeset 11259 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2016-11-16T00:27:08+01:00 (8 years ago)
Author:
Don-vip
Message:

see #10387 - see #12914 - add debug info for failing unit test, remove operator=RFF check as the tag does not exist anymore

Location:
trunk/src/org/openstreetmap/josm/tools
Files:
2 edited

Legend:

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

    r10316 r11259  
    170170        }
    171171
     172        @Override
     173        public String toString() {
     174            return "GPLevel [val=" + val + ", level=" + level + ", bbox=" + bbox + ']';
     175        }
     176    }
     177
     178    @Override
     179    public String toString() {
     180        return "GeoPropertyIndex [maxLevel=" + maxLevel + ", geoProp=" + geoProp + ", root=" + root + ", lastLevelUsed="
     181                + lastLevelUsed + ']';
    172182    }
    173183}
  • trunk/src/org/openstreetmap/josm/tools/RightAndLefthandTraffic.java

    r11256 r11259  
    7171    }
    7272
    73     private static volatile Collection<Area> leftHandTrafficPolygons;
    74     private static volatile GeoPropertyIndex<Boolean> rlCache;
     73    static volatile Collection<Area> leftHandTrafficPolygons;
     74    static volatile GeoPropertyIndex<Boolean> rlCache;
    7575
    7676    private RightAndLefthandTraffic() {
Note: See TracChangeset for help on using the changeset viewer.