Changeset 15337 in josm


Ignore:
Timestamp:
2019-09-06T10:43:10+02:00 (5 years ago)
Author:
stoecker
Message:

see #18079 - make a bit more obvious, that you don't see non-printing characters

File:
1 edited

Legend:

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

    r15042 r15337  
    602602        if ((containsUnwantedNonPrintingControlCharacter(value)) && !withErrors.contains(p, "ICV")) {
    603603            errors.add(TestError.builder(this, Severity.WARNING, LOW_CHAR_VALUE)
    604                     .message(tr("Tag value contains non-printing character"), s, key)
     604                    .message(tr("Tag value contains non-printing (usually invisible) character"), s, key)
    605605                    .primitives(p)
    606606                    .fix(() -> new ChangePropertyCommand(p, key, removeUnwantedNonPrintingControlCharacters(value)))
Note: See TracChangeset for help on using the changeset viewer.