Changeset 6266 in josm


Ignore:
Timestamp:
2013-09-27T02:01:48+02:00 (11 years ago)
Author:
Don-vip
Message:

Sonar/FindBugs - Performance - Method concatenates strings using + in a loop (forgot this one)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java

    r6264 r6266  
    156156            }
    157157            if (i.serverProjections != null && !i.serverProjections.isEmpty()) {
    158                 String val = "";
     158                StringBuilder val = new StringBuilder();
    159159                for (String p : i.serverProjections) {
    160                     if (!val.isEmpty())
    161                         val += ",";
    162                     val += p;
    163                 }
    164                 projections = val;
     160                    if (val.length() > 0) {
     161                        val.append(",");
     162                    }
     163                    val.append(p);
     164                }
     165                projections = val.toString();
    165166            }
    166167        }
Note: See TracChangeset for help on using the changeset viewer.