summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2020-01-31 11:17:09 +0100
committerHarald Musum <musum@verizonmedia.com>2020-01-31 11:17:09 +0100
commitdd54468cff25fe32318ce1c539c976bb58460287 (patch)
tree37c1085f6da37a332687809daccdf08585e67f6c /controller-api
parent964a140569dbef3f28cc05e0d2a62214505b40c5 (diff)
Remove unused default implementations
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java
index 36b13b3496a..a1c4d379b6c 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/TesterCloud.java
@@ -18,15 +18,13 @@ public interface TesterCloud {
void startTests(URI testerUrl, Suite suite, byte[] config);
/** Signals the tester to run its tests. */
- // TODO: Remove default implementation when implementations have been updated
- default void startTests(DeploymentId deploymentId, Suite suite, byte[] config) {}
+ void startTests(DeploymentId deploymentId, Suite suite, byte[] config);
/** Returns the log entries from the tester with ids after the given threshold. */
List<LogEntry> getLog(URI testerUrl, long after);
/** Returns the log entries from the tester with ids after the given threshold. */
- // TODO: Remove default implementation when implementations have been updated
- default List<LogEntry> getLog(DeploymentId deploymentId, long after) { return List.of(); }
+ List<LogEntry> getLog(DeploymentId deploymentId, long after);
/** Returns the current status of the tester. */
Status getStatus(URI testerUrl);
@@ -41,8 +39,7 @@ public interface TesterCloud {
boolean testerReady(URI endpointUrl);
/** Returns whether the test container is ready to serve */
- // TODO: Remove default implementation when implementations have been updated
- default boolean testerReady(DeploymentId deploymentId) { return false; }
+ boolean testerReady(DeploymentId deploymentId);
/** Returns whether the given URL is registered in DNS. */
boolean exists(URI endpointUrl);