Changeset 15440 in josm for trunk/scripts


Ignore:
Timestamp:
2019-10-07T21:32:54+02:00 (5 years ago)
Author:
Don-vip
Message:

checkstyle/findbugs/sonar

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/SyncEditorLayerIndex.java

    r15439 r15440  
    10831083            jt = getIcon(j);
    10841084            if (isNotBlank(jt)) {
    1085                 if(!jt.startsWith("data:image/"))
     1085                if (!jt.startsWith("data:image/"))
    10861086                    urls.add(jt);
    10871087                else {
    1088                     try
    1089                     {
    1090                       new ImageProvider(jt).get();
    1091                     } catch(Exception e) {
     1088                    try {
     1089                        new ImageProvider(jt).get();
     1090                    } catch (RuntimeException e) {
    10921091                        myprintln("* Strange Icon: "+getDescription(j));
    10931092                    }
Note: See TracChangeset for help on using the changeset viewer.