Ignore:
Timestamp:
2013-07-17T00:01:07+02:00 (11 years ago)
Author:
stoecker
Message:

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java

    r6068 r6069  
    419419            if (checkValues && value != null && value.length() > 0 && presetsValueData != null) {
    420420                final Set<String> values = presetsValueData.get(key);
    421                 final boolean keyInPresets = values != null; 
     421                final boolean keyInPresets = values != null;
    422422                final boolean tagInPresets = values != null && (values.isEmpty() || values.contains(prop.getValue()));
    423                
     423
    424424                boolean ignore = false;
    425425                for (String a : ignoreDataStartsWith) {
     
    438438                    }
    439439                }
    440                
     440
    441441                if (!tagInPresets) {
    442442                    for (IgnoreKeyPair a : ignoreDataKeyPair) {
     
    446446                    }
    447447                }
    448                
     448
    449449                if (!ignore) {
    450450                    if (!keyInPresets) {
Note: See TracChangeset for help on using the changeset viewer.