Changeset 19527 in josm for trunk


Ignore:
Timestamp:
2026-02-13T13:54:13+01:00 (19 hours ago)
Author:
stoecker
Message:

checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/validation/routines/DomainValidatorTestIT.java

    r19526 r19527  
    174174            }
    175175            allTLD.remove("arpa");
    176             allTLD.replace("melbourne", allTLD.get("melbourne").replaceAll("represented by its ",""));
     176            String s = allTLD.get("melbourne");
     177            if (s != null) /* text too long, shorten a bit */
     178                allTLD.replace("melbourne", s.replace("represented by its ", ""));
    177179            printMap(header, allTLD, "allTLD");
    178180            printMap(header, allCC, "allCC");
Note: See TracChangeset for help on using the changeset viewer.