Changeset 6524 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2013-12-24T21:12:40+01:00 (12 years ago)
- File:
-
- 1 edited
-
trunk/src/org/openstreetmap/josm/tools/Utils.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Utils.java
r6421 r6524 201 201 } 202 202 203 public static String joinAsHtmlUnorderedList(Collection<?> values) { 203 /** 204 * Converts the given iterable collection as an unordered HTML list. 205 * @param values The iterable collection 206 * @return An unordered HTML list 207 */ 208 public static String joinAsHtmlUnorderedList(Iterable<?> values) { 204 209 StringBuilder sb = new StringBuilder(1024); 205 210 sb.append("<ul>");
Note:
See TracChangeset
for help on using the changeset viewer.
