summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authortoby <smorgrav@yahoo-inc.com>2018-10-04 10:19:21 +0200
committertoby <smorgrav@yahoo-inc.com>2018-10-04 10:19:21 +0200
commit141371f6d0cf98816da333b4656e36a7d7de9716 (patch)
tree0521fadc392923a7b0467ea9f10ac22cf8858c17 /controller-api
parentef0f66559b173a35ac37f3b42b96c376711b918e (diff)
Remove deprication tag as it leads to compile errors
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/NameService.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/NameService.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/NameService.java
index 356bdeecfc8..c2bd8adf512 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/NameService.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/dns/NameService.java
@@ -20,8 +20,7 @@ public interface NameService {
*/
RecordId createCname(RecordName alias, RecordData canonicalName);
- /** Find record by type and name */
- @Deprecated
+ /** Find record by type and name - will throw exception if more tha one record matches */
Optional<Record> findRecord(Record.Type type, RecordName name);
/** Find record by type and name - may return multiple records */