Ignore:
Timestamp:
2013-09-27T01:16:28+02:00 (11 years ago)
Author:
Don-vip
Message:

Sonar/FindBugs - Performance - Method concatenates strings using + in a loop

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/ReverseWayNoTagCorrector.java

    r5732 r6264  
    6464            return tags.iterator().next().toString();
    6565        } else if (tags.size() > 1) {
    66             String s = "<ul>";
     66            StringBuilder s = new StringBuilder("<ul>");
    6767            for (Tag t : tags) {
    68                 s += "<li>" + t.toString() + "</li>";
     68                s.append("<li>").append(t).append("</li>");
    6969            }
    70             s += "</ul>";
    71             return s;
     70            s.append("</ul>");
     71            return s.toString();
    7272        } else {
    7373            return "";
Note: See TracChangeset for help on using the changeset viewer.