Ignore:
Timestamp:
2015-09-22T22:00:06+02:00 (9 years ago)
Author:
simon04
Message:

fix #11626 - <checkgroup> blocks auto completion and match=*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/TaggingPresetItems.java

    r8710 r8786  
    853853
    854854        @Override
     855        Boolean matches(Map<String, String> tags) {
     856            for (Check check : checks) {
     857                if (Boolean.TRUE.equals(check.matches(tags))) {
     858                    return true;
     859                }
     860            }
     861            return null;
     862        }
     863
     864        @Override
    855865        public String toString() {
    856866            return "CheckGroup [columns=" + columns + "]";
Note: See TracChangeset for help on using the changeset viewer.