- Fix spacing in summary bar

- Add start() in UpdateTask so things happen in the right order
- Add toString() in UpdateTask for better debugging
- Fix getID() for plugin UpdateTasks
This commit is contained in:
zzz
2012-10-22 20:25:01 +00:00
parent 1538e6ec4e
commit bd9ad9982b
12 changed files with 35 additions and 13 deletions

View File

@@ -184,6 +184,7 @@ public class ConsoleUpdateManager implements UpdateManager {
if (_log.shouldLog(Log.INFO))
_log.info("Starting " + r);
_activeCheckers.add(t);
t.start();
}
}
if (t != null) {
@@ -226,6 +227,7 @@ public class ConsoleUpdateManager implements UpdateManager {
if (_log.shouldLog(Log.INFO))
_log.info("Starting " + r);
_activeCheckers.add(t);
t.start();
break;
}
}
@@ -517,6 +519,7 @@ public class ConsoleUpdateManager implements UpdateManager {
if (_log.shouldLog(Log.INFO))
_log.info("Starting " + r);
_downloaders.put(t, toTry);
t.start();
return t;
} else {
if (_log.shouldLog(Log.WARN))