Stub out UpdateChecker
This commit is contained in:
19
app/src/main/java/i2p/bote/service/UpdateChecker.java
Normal file
19
app/src/main/java/i2p/bote/service/UpdateChecker.java
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
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() {}
|
||||||
|
}
|
||||||
@@ -102,6 +102,7 @@
|
|||||||
<!-- remove classes that are overridden or stubbed out -->
|
<!-- remove classes that are overridden or stubbed out -->
|
||||||
<zipfileset src="${botelib}/i2pbote.jar" >
|
<zipfileset src="${botelib}/i2pbote.jar" >
|
||||||
<exclude name="i2p/bote/imap/" />
|
<exclude name="i2p/bote/imap/" />
|
||||||
|
<exclude name="i2p/bote/service/UpdateChecker.class" />
|
||||||
<exclude name="i2p/bote/service/seedless/" />
|
<exclude name="i2p/bote/service/seedless/" />
|
||||||
<exclude name="i2p/bote/smtp/" />
|
<exclude name="i2p/bote/smtp/" />
|
||||||
</zipfileset>
|
</zipfileset>
|
||||||
|
|||||||
Reference in New Issue
Block a user