Changeset 13714 in josm for trunk


Ignore:
Timestamp:
2018-05-08T11:31:08+02:00 (6 years ago)
Author:
stoecker
Message:

fix wrong variable names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/SyncEditorLayerIndex.groovy

    r13621 r13714  
    396396                if(lj.contains(urlhttps))
    397397                {
    398                     myprintln l += "+ Missing https: ${getDescription(e)}"
     398                    myprintln "+ Missing https: ${getDescription(e)}"
    399399                    eliUrls.put(urlhttps, eliUrls.get(urle))
    400400                    eliUrls.remove(urle)
    401401                    le.remove(urle)
    402                     lj.remove(urlj)
     402                    lj.remove(urlhttps)
    403403                } else if(ide) {
    404404                    def kj = new LinkedList<String>(lj)
     
    406406                        def j = josmUrls.get(urlj)
    407407                        def idj = getId(j)
    408                    
     408
    409409                        if (ide.equals(idj) && getType(j) == getType(e)) {
    410410                            myprintln "* URL for id ${idj} differs ($urle): ${getDescription(j)}"
     
    420420            }
    421421        }
    422        
     422
    423423        myprintln "*** URLs found in ELI but not in JOSM (${le.size()}): ***"
    424424        le.sort()
Note: See TracChangeset for help on using the changeset viewer.