Ignore:
Timestamp:
2016-07-23T18:46:45+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/gui/oauth/RetrieveAccessTokenTask.java

    r9256 r10611  
    9090        } catch (final OsmOAuthAuthorizationException e) {
    9191            Main.error(e);
    92             GuiHelper.runInEDT(new Runnable() {
    93                 @Override
    94                 public void run() {
    95                     alertRetrievingAccessTokenFailed(e);
    96                 }
    97             });
     92            GuiHelper.runInEDT(() -> alertRetrievingAccessTokenFailed(e));
    9893            accessToken = null;
    9994        } finally {
Note: See TracChangeset for help on using the changeset viewer.