aboutsummaryrefslogtreecommitdiffstats
path: root/container-core
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-06-03 14:12:25 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:27 +0200
commit6781951308ffe777378bb155db711798480e6ccc (patch)
treeceb4caa634d175b35bfd99c23c01cef71d4488b0 /container-core
parente9f70dd80402a3b235e74d3d3d7aaa6d47bf2392 (diff)
Remove on Vespa 8
Diffstat (limited to 'container-core')
-rw-r--r--container-core/abi-spec.json2
-rw-r--r--container-core/src/main/java/com/yahoo/container/handler/VipStatus.java12
2 files changed, 0 insertions, 14 deletions
diff --git a/container-core/abi-spec.json b/container-core/abi-spec.json
index 17cd7e09b7d..a088659e2f4 100644
--- a/container-core/abi-spec.json
+++ b/container-core/abi-spec.json
@@ -401,8 +401,6 @@
"public void setInRotation(java.lang.Boolean)",
"public void addToRotation(java.lang.String)",
"public void removeFromRotation(java.lang.String)",
- "public void addToRotation(java.lang.Object)",
- "public void removeFromRotation(java.lang.Object)",
"public boolean isInRotation()"
],
"fields": []
diff --git a/container-core/src/main/java/com/yahoo/container/handler/VipStatus.java b/container-core/src/main/java/com/yahoo/container/handler/VipStatus.java
index 3b54d098d13..8e8b674c888 100644
--- a/container-core/src/main/java/com/yahoo/container/handler/VipStatus.java
+++ b/container-core/src/main/java/com/yahoo/container/handler/VipStatus.java
@@ -96,18 +96,6 @@ public class VipStatus {
updateCurrentlyInRotation();
}
- /** @deprecated use addToRotation(String) instead */
- @Deprecated // TODO: Remove on Vespa 8
- public void addToRotation(Object clusterIdentifier) {
- addToRotation((String) clusterIdentifier);
- }
-
- /** @deprecated use removeFromRotation(String) instead */
- @Deprecated // TODO: Remove on Vespa 8
- public void removeFromRotation(Object clusterIdentifier) {
- removeFromRotation((String) clusterIdentifier);
- }
-
private void updateCurrentlyInRotation() {
synchronized (mutex) {
if (rotationOverride != null) {