Changeset 4390 in josm


Ignore:
Timestamp:
Aug 31, 2011 9:41:56 PM (21 months ago)
Author:
simon04
Message:

fix #5991, fix #6317 - improve automatic tag correction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayTagCorrector.java

    r4345 r4390  
    213213 
    214214    private static boolean ignoreKeyForPrefixSuffixCorrection(String key) { 
    215         return key.startsWith("name") || key.endsWith("name") 
     215        return key.contains("name") || key.equals("tiger:county") 
    216216                || key.equalsIgnoreCase("fixme") || key.startsWith("note"); 
    217217    } 
Note: See TracChangeset for help on using the changeset viewer.