Ignore:
Timestamp:
2016-07-23T18:46:45+02:00 (10 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/gui/layer/MainLayerManager.java

    r10600 r10611  
    228228        // we force this on to the EDT Thread to make events fire from there.
    229229        // The synchronization lock needs to be held by the EDT.
    230         GuiHelper.runInEDTAndWaitWithException(new Runnable() {
    231             @Override
    232             public void run() {
    233                 realSetActiveLayer(layer);
    234             }
    235         });
     230        GuiHelper.runInEDTAndWaitWithException(() -> realSetActiveLayer(layer));
    236231    }
    237232
Note: See TracChangeset for help on using the changeset viewer.