summaryrefslogtreecommitdiffstats
path: root/controller-api/src
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2017-12-08 15:47:41 +0100
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2017-12-08 15:47:41 +0100
commit6b818dccd5460d785d5452a6a961bb637501c574 (patch)
treea8f682dbddc69178608115209c8b26dd75142515 /controller-api/src
parent267e1407bf2b659ccfd867c6a6210bd32b87667d (diff)
Remove unused ZoneId
Diffstat (limited to 'controller-api/src')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/identifiers/ZoneId.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/identifiers/ZoneId.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/identifiers/ZoneId.java
deleted file mode 100644
index 79210143d19..00000000000
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/identifiers/ZoneId.java
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.hosted.controller.api.identifiers;
-
-/**
- * @author smorgrav
- */
-public class ZoneId extends Identifier {
-
- public ZoneId(EnvironmentId envId, RegionId regionId) {
- super(envId.id() + ":" + regionId.id());
- }
-
-}