Changeset 18208 in josm for trunk/scripts
- Timestamp:
- 2021-09-11T17:50:57+02:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/SyncEditorLayerIndex.java
r17737 r18208 64 64 import org.openstreetmap.josm.tools.OptionParser.OptionCount; 65 65 import org.openstreetmap.josm.tools.ReflectionUtils; 66 import org.openstreetmap.josm.tools.Utils; 66 67 import org.xml.sax.SAXException; 67 68 … … 959 960 Map<String, Set<String>> jh = getNoTileHeader(j); 960 961 if (!Objects.equals(eh, jh)) { 961 if ( jh == null || jh.isEmpty()) {962 if (Utils.isEmpty(jh)) { 962 963 myprintln("- Missing JOSM no tile headers ("+eh+"): "+getDescription(j)); 963 964 } else if (eh != null && !eh.isEmpty()) {
Note:
See TracChangeset
for help on using the changeset viewer.