Changeset 19355 in josm for trunk/test
- Timestamp:
- 2025-03-22T13:08:04+01:00 (4 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/validation/routines/DomainValidatorTestIT.java
r19351 r19355 121 121 unicodeTld = asciiTld; 122 122 } 123 if (!dv.isValidTld(asciiTld)) {124 String[] info = htmlInfo.get(asciiTld);123 String[] info = htmlInfo.get(asciiTld); 124 if (info != null) { 125 125 String type = info[0]; 126 126 String comment = info[1]; … … 136 136 } 137 137 } 138 if ( info != null) {138 if (!dv.isValidTld(asciiTld)) { 139 139 if ("country-code".equals(type)) { // Which list to use? 140 140 missingCC.put(asciiTld, unicodeTld + " " + comment);
Note:
See TracChangeset
for help on using the changeset viewer.