Changeset 15851 in josm for trunk/scripts


Ignore:
Timestamp:
2020-02-14T12:45:34+01:00 (5 years ago)
Author:
Don-vip
Message:

fix recent spotbugs/checkstyle/javadoc issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/SyncEditorLayerIndex.java

    r15850 r15851  
    251251                if (res.matches()) {
    252252                    String s = res.group(2);
    253                     if(s.endsWith("..."))
    254                     {
     253                    if (s.endsWith("...")) {
    255254                        s = s.substring(0, s.length() - 3);
    256255                        if ("Ignore".equals(res.group(1))) {
     
    259258                            skipStart.put(s, "darkgoldenrod");
    260259                        }
    261                     }
    262                     else
    263                     {
     260                    } else {
    264261                        if ("Ignore".equals(res.group(1))) {
    265262                            skip.put(s, "green");
     
    294291        return null;
    295292    }
    296    
     293
    297294    void myprintln(String s) {
    298295        String color;
Note: See TracChangeset for help on using the changeset viewer.