Changeset 14585 in josm for trunk/src/org
- Timestamp:
- 2018-12-22T11:35:27+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
r14571 r14585 591 591 marktr("Value ''{0}'' for key ''{1}'' looks like ''{2}''."), prop.getValue(), key, newValue) 592 592 .primitives(p) 593 .fix(() -> new ChangePropertyCommand(p, key, newValue))594 593 .build()); 595 594 withErrors.put(p, "WPV"); … … 781 780 int code = testError.getCode(); 782 781 return code == INVALID_KEY || code == EMPTY_VALUES || code == INVALID_SPACE || 783 code == INVALID_KEY_SPACE || code == INVALID_HTML || code == MISSPELLED_VALUE ||782 code == INVALID_KEY_SPACE || code == INVALID_HTML || 784 783 code == MULTIPLE_SPACES; 785 784 }
Note:
See TracChangeset
for help on using the changeset viewer.