Ignore:
Timestamp:
2017-05-15T22:57:02+02:00 (7 years ago)
Author:
michael2402
Message:

Add javadoc to OsmUtils, fix constant naming.

File:
1 edited

Legend:

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

    r12042 r12187  
    762762                    } else if ("BOOLEAN_TRUE".equals(n)) {
    763763                        valueBool = true;
    764                         value = OsmUtils.trueval;
     764                        value = OsmUtils.TRUE_VALUE;
    765765                    } else if ("BOOLEAN_FALSE".equals(n)) {
    766766                        valueBool = true;
    767                         value = OsmUtils.falseval;
     767                        value = OsmUtils.FALSE_VALUE;
    768768                    } else {
    769769                        value = n.startsWith("/") ? getPattern(n) : n;
Note: See TracChangeset for help on using the changeset viewer.