Ticket #2427: 2427.patch

File 2427.patch, 861 bytes (added by meddle, 15 years ago)

Patch

  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/frame/ErrorManipulationView.java

    ### Eclipse Workspace Patch 1.0
    #P sophie
     
    167167                                                        this.refreshTask.cancel(); 
    168168                                                } 
    169169 
    170                                                 this.refreshTask = new RefreshTask(); 
     170                                                TimerTask task = new RefreshTask(); 
     171                                                this.refreshTask = task; 
    171172 
    172173                                                Timer timer = new Timer(); 
    173                                                 timer.schedule(this.refreshTask, expirable.getTimeOut()); 
     174                                                timer.schedule(task, expirable.getTimeOut()); 
    174175                                        } 
    175176                                } 
    176177