Changeset 1489 in josm for trunk/src


Ignore:
Timestamp:
2009-03-14T10:25:04+01:00 (16 years ago)
Author:
ulfl
Message:

add "junction" to the list of direction keys

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java

    r1471 r1489  
    345345        hasDirectionKeys = false;
    346346        if(directionKeys == null)
     347            /* this list only works for keys but not for values (e.g. highway=incline won't work here) */
    347348            directionKeys = Main.pref.getCollection("tags.direction",
    348             Arrays.asList(new String[]{"oneway","incline","incline_steep","aerialway"}));
     349            Arrays.asList(new String[]{"oneway","incline","incline_steep","aerialway","junction"}));
    349350        if (keys != null) {
    350351            for (Entry<String,String> e : keys.entrySet()) {
Note: See TracChangeset for help on using the changeset viewer.