Changeset 24208 in osm for applications/editors/josm


Ignore:
Timestamp:
2010-11-12T22:50:57+01:00 (14 years ago)
Author:
oliverw
Message:

isStreetSupportingHousenumbers returns always true - until this can be configured.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/TagUtils.java

    r24166 r24208  
    19091909               
    19101910                // TODO: Should be configurable
     1911                                       
     1912                /* Allow everything until this can be configured */
     1913                return true;
     1914                /*
    19111915                String hwType = getHighwayValue(w);
    1912                                
    19131916                return  !(TagUtils.HIGHWAY_MOTORWAY_LINK_VALUE.equals(hwType) ||
    19141917                                TagUtils.HIGHWAY_MOTORWAY_VALUE.equals(hwType) ||
    19151918                                TagUtils.HIGHWAY_FOOTWAY_VALUE.equals(hwType) ||
    19161919                                TagUtils.HIGHWAY_TRACK_VALUE.equals(hwType)
    1917                                 );
     1920                                );*/
    19181921        }
    19191922       
Note: See TracChangeset for help on using the changeset viewer.