No need to stub out UpdateChecker any more

This commit is contained in:
str4d
2015-01-04 22:18:10 +00:00
parent 13b7c4e2ef
commit 5614e5efcd
2 changed files with 0 additions and 20 deletions

View File

@@ -1,19 +0,0 @@
package i2p.bote.service;
import net.i2p.util.I2PAppThread;
import i2p.bote.Configuration;
import i2p.bote.network.NetworkStatusSource;
public class UpdateChecker extends I2PAppThread {
public UpdateChecker(NetworkStatusSource networkStatusSource, Configuration configuration) {
super("UpdateCheckr");
}
public synchronized boolean isUpdateAvailable() {
return false;
}
@Override
public void run() {}
}