Ignore:
Timestamp:
2020-01-18T14:13:56+01:00 (6 years ago)
Author:
simon04
Message:

Java 8: use String.join

File:
1 edited

Legend:

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

    r15259 r15716  
    11111111                        tr("Ignore warning and install style anyway"));
    11121112                    dlg.setContent("<html>" + tr("Some entries have unmet dependencies:") +
    1113                             "<br>" + Utils.join("<br>", messages) + "</html>");
     1113                            "<br>" + String.join("<br>", messages) + "</html>");
    11141114                    dlg.setIcon(JOptionPane.WARNING_MESSAGE);
    11151115                    if (dlg.showDialog().getValue() != 2)
Note: See TracChangeset for help on using the changeset viewer.