Ignore:
Timestamp:
2013-12-24T21:12:40+01:00 (12 years ago)
Author:
Don-vip
Message:

global use of Utils.joinAsHtmlUnorderedList()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r6421 r6524  
    201201    }
    202202
    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) {
    204209        StringBuilder sb = new StringBuilder(1024);
    205210        sb.append("<ul>");
Note: See TracChangeset for help on using the changeset viewer.