Ignore:
Timestamp:
2016-07-23T21:38:02+02:00 (8 years ago)
Author:
Don-vip
Message:

see #11390 - sonar - squid:S1604 - Java 8: Anonymous inner classes containing only one method should become lambdas

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/NMEAImporter.java

    r10615 r10616  
    7575           .append("</html>");
    7676        if (success) {
    77             SwingUtilities.invokeLater(() -> new Notification(
     77            SwingUtilities.invokeLater(new Notification(
    7878                    "<h3>" + tr("NMEA import success:") + "</h3>" + msg.toString())
    7979                    .setIcon(JOptionPane.INFORMATION_MESSAGE)
    80                     .show());
     80                    ::show);
    8181        } else {
    8282            HelpAwareOptionPane.showMessageDialogInEDT(
Note: See TracChangeset for help on using the changeset viewer.