Changeset 6266 in josm
- Timestamp:
- 2013-09-27T02:01:48+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
r6264 r6266 156 156 } 157 157 if (i.serverProjections != null && !i.serverProjections.isEmpty()) { 158 String val = "";158 StringBuilder val = new StringBuilder(); 159 159 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(); 165 166 } 166 167 }
Note:
See TracChangeset
for help on using the changeset viewer.