From f33e5c2845c12cb1e2377f2d257dbdfd8306fde3 Mon Sep 17 00:00:00 2001 From: dev Date: Sun, 14 Jun 2015 17:57:59 +0000 Subject: [PATCH] Revert accidental commit to ConsoleUpdateManager --- .../router/update/ConsoleUpdateManager.java | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/apps/routerconsole/java/src/net/i2p/router/update/ConsoleUpdateManager.java b/apps/routerconsole/java/src/net/i2p/router/update/ConsoleUpdateManager.java index 575bef451..94ac47104 100644 --- a/apps/routerconsole/java/src/net/i2p/router/update/ConsoleUpdateManager.java +++ b/apps/routerconsole/java/src/net/i2p/router/update/ConsoleUpdateManager.java @@ -255,28 +255,6 @@ public class ConsoleUpdateManager implements UpdateManager, RouterApp { return _status; } - /** - * Is an update available? - * Blocking. - * An available update may still have a constraint or lack sources. - * @param type the UpdateType of this request - * @param id id of this request - * @param maxWait max time to block - * @return new version or null if nothing newer is available - * @since 0.9.21 - */ - public String checkAvailable(UpdateType type) { - return checkAvailable(type, "", DEFAULT_CHECK_TIME); - } - - /** - * Is an update available? - * Blocking. - * An available update may still have a constraint or lack sources. - * @param type the UpdateType of this request - * @param maxWait max time to block - * @return new version or null if nothing newer is available - */ public String checkAvailable(UpdateType type, long maxWait) { return checkAvailable(type, "", maxWait); } @@ -285,8 +263,6 @@ public class ConsoleUpdateManager implements UpdateManager, RouterApp { * Is an update available? * Blocking. * An available update may still have a constraint or lack sources. - * @param type the UpdateType of this request - * @param id id of this request * @param maxWait max time to block * @return new version or null if nothing newer is available */