Ignore:
Timestamp:
2013-07-26T13:38:17+02:00 (11 years ago)
Author:
bastiK
Message:

see #8902 - add missing @Override annotations (patch by shinigami)

File:
1 edited

Legend:

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

    r4907 r6084  
    8686                    } else {
    8787                        EventQueue.invokeAndWait(new Runnable() {
     88                            @Override
    8889                            public void run() {
    8990                                finish();
     
    103104                } else {
    104105                    EventQueue.invokeAndWait(new Runnable() {
     106                        @Override
    105107                        public void run() {
    106108                            afterFinish();
     
    113115                // Exception has to thrown in EDT to be shown to user
    114116                SwingUtilities.invokeLater(new Runnable() {
     117                    @Override
    115118                    public void run() {
    116119                        if (e instanceof RuntimeException) {
     
    132135    }
    133136
     137    @Override
    134138    public final void run() {
    135139        if (canceled)
     
    138142        if (EventQueue.isDispatchThread()) {
    139143            new Thread(new Runnable() {
     144                @Override
    140145                public void run() {
    141146                    doRealRun();
     
    147152    }
    148153
     154    @Override
    149155    public void operationCanceled() {
    150156        cancel();
Note: See TracChangeset for help on using the changeset viewer.