Ignore:
Timestamp:
2016-05-16T04:11:52+02:00 (8 years ago)
Author:
Don-vip
Message:

fix unwanted warning when parsing comments in tagchecker files

File:
1 edited

Legend:

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

    r10216 r10224  
    213213                            break;
    214214                        default:
    215                             Main.warn("Unsupported TagChecker key: " + key);
     215                            if (!key.startsWith(";")) {
     216                                Main.warn("Unsupported TagChecker key: " + key);
     217                            }
    216218                        }
    217219                    } else if (tagcheckerfile) {
Note: See TracChangeset for help on using the changeset viewer.