Ignore:
Timestamp:
2016-11-13T14:49:39+01:00 (8 years ago)
Author:
Don-vip
Message:

see #10387 - refactor actions to fix taginfo script

File:
1 edited

Legend:

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

    r11249 r11252  
    8181     */
    8282    public static synchronized boolean isRightHandTraffic(LatLon ll) {
    83         if (rlCache == null) {
    84             initialize();
    85         }
    8683        return !rlCache.get(ll);
    8784    }
     
    137134        }
    138135        // Purge all other ways and relations so dataset only contains lefthand traffic data
    139         new PurgeAction().doPurge(toPurge, false);
     136        new PurgeAction().getPurgeCommand(toPurge).executeCommand();
    140137        // Combine adjacent countries into a single polygon
    141138        Collection<Way> optimizedWays = new ArrayList<>();
Note: See TracChangeset for help on using the changeset viewer.