disable button disabling

This commit is contained in:
zzz
2009-05-15 20:00:56 +00:00
parent 9e003a9f93
commit 9bed2bde3c

View File

@ -93,9 +93,11 @@ public class UpdateHandler {
}
public boolean isDone() {
if(this._updateRunner == null)
return true;
return this._updateRunner.isDone();
return false;
// this needs to be fixed and tested
//if(this._updateRunner == null)
// return true;
//return this._updateRunner.isDone();
}
public class UpdateRunner implements Runnable, EepGet.StatusListener {