Ignore:
Timestamp:
2019-04-14T10:59:36+02:00 (5 years ago)
Author:
donvip
Message:

see #josm17600 - fix build

File:
1 moved

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/turnlanes/src/org/openstreetmap/josm/plugins/turnlanes/model/TurnlanesUtils.java

    r34977 r34978  
    2020import org.openstreetmap.josm.plugins.turnlanes.CollectionUtils;
    2121
    22 public final class Utils {
     22public final class TurnlanesUtils {
    2323    private static final Set<String> ROAD_HIGHWAY_VALUES = Collections.unmodifiableSet(new HashSet<>(Arrays
    2424            .asList("motorway", "motorway_link", "trunk", "trunk_link", "primary", "primary_link", "secondary",
     
    2626                    "track", "pedestrian", "raceway", "services")));
    2727
    28     private Utils() {
     28    private TurnlanesUtils() {
    2929        // Hide default constructor for utilities classes
    3030    }
     
    3838
    3939        for (OsmPrimitive p : of) {
    40             if (p.getType() == OsmPrimitiveType.WAY && Utils.isRoad((Way) p)) {
     40            if (p.getType() == OsmPrimitiveType.WAY && isRoad((Way) p)) {
    4141                result.add((Way) p);
    4242            }
     
    219219            for (Route.Segment s : segments) {
    220220                result.add(s.getWay());
    221                 n = Utils.getOppositeEnd(s.getWay(), n);
     221                n = getOppositeEnd(s.getWay(), n);
    222222            }
    223223        }
Note: See TracChangeset for help on using the changeset viewer.