shorten the other timeout

This commit is contained in:
zzz
2012-01-15 21:39:52 +00:00
parent 0cee758dc3
commit da2cd92884
2 changed files with 3 additions and 3 deletions

View File

@ -121,11 +121,11 @@ public class PluginUpdateChecker extends UpdateHandler {
}
private void scheduleStatusClean(String msg) {
SimpleScheduler.getInstance().addEvent(new Cleaner(msg), 60*60*1000);
SimpleScheduler.getInstance().addEvent(new Cleaner(msg), 20*60*1000);
}
private class Cleaner implements SimpleTimer.TimedEvent {
private String _msg;
private final String _msg;
public Cleaner(String msg) {
_msg = msg;
}