Changeset 4390 in josm for trunk/src/org


Ignore:
Timestamp:
2011-08-31T21:41:56+02:00 (13 years 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.