Changeset 13931 in josm for trunk/scripts
- Timestamp:
- 2018-06-14T19:26:00+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/SyncEditorLayerIndex.groovy
r13831 r13931 507 507 if (!josmUrls.containsKey(url)) continue 508 508 def j = josmUrls.get(url) 509 if (!getCountryCode(e).equals(getCountryCode(j))) { 509 def cce = getCountryCode(e) 510 if ("ZZ".equals(cce)) { /* special ELI country code */ 511 cce = null 512 } 513 if (!cce.equals(getCountryCode(j))) { 510 514 myprintln "* Country code differs (${getCountryCode(e)} != ${getCountryCode(j)}): ${getDescription(j)}" 511 515 }
Note:
See TracChangeset
for help on using the changeset viewer.