Ignore:
Timestamp:
2017-02-23T23:44:29+01:00 (7 years ago)
Author:
Don-vip
Message:

sonar - squid:S1172 - Unused method parameters should be removed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/oauth/RetrieveAccessTokenTask.java

    r10627 r11604  
    6666    protected void finish() { /* not used in this task */}
    6767
    68     protected void alertRetrievingAccessTokenFailed(OsmOAuthAuthorizationException e) {
     68    protected void alertRetrievingAccessTokenFailed() {
    6969        HelpAwareOptionPane.showOptionDialog(
    7070                parent,
     
    9191        } catch (final OsmOAuthAuthorizationException e) {
    9292            Main.error(e);
    93             GuiHelper.runInEDT(() -> alertRetrievingAccessTokenFailed(e));
     93            GuiHelper.runInEDT(this::alertRetrievingAccessTokenFailed);
    9494            accessToken = null;
    9595        } finally {
Note: See TracChangeset for help on using the changeset viewer.