Ignore:
Timestamp:
2018-05-13T09:15:34+02:00 (6 years ago)
Author:
wiktorn
Message:

Checkstyle fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/imagery/HeadersTable.java

    r13733 r13742  
    7272
    7373            } else if (row == headers.size()) {
    74                 String[] entry = new String[] { "", "" };
     74                String[] entry = new String[] {"", ""};
    7575                entry[col] = (String) value;
    7676                headers.add(entry);
     
    9393    /**
    9494     * Create table prefilled with headers
    95      * @param headers
     95     * @param headers contents of table
    9696     */
    9797    public HeadersTable(Map<String, String> headers) {
     
    108108    private static List<String[]> getHeadersAsVector(Map<String, String> headers) {
    109109        return headers.entrySet().stream().sorted((e1, e2) -> e1.getKey().compareTo(e2.getKey()))
    110                 .map(e -> new String[] { e.getKey(), e.getValue() }).collect(Collectors.toList());
     110                .map(e -> new String[] {e.getKey(), e.getValue()}).collect(Collectors.toList());
    111111    }
    112112
Note: See TracChangeset for help on using the changeset viewer.