summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java')
-rw-r--r--vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java b/vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java
deleted file mode 100644
index 73363e68e2b..00000000000
--- a/vespaclient-container-plugin/src/main/java/com/yahoo/storage/searcher/DocumentRemoveHit.java
+++ /dev/null
@@ -1,23 +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.storage.searcher;
-
-import com.yahoo.document.DocumentId;
-import com.yahoo.search.result.Hit;
-
-@Deprecated // OK
-// TODO: Remove on Vespa 7
-public class DocumentRemoveHit extends Hit {
-
- private final DocumentId idOfRemovedDoc;
-
- public DocumentRemoveHit(DocumentId idOfRemovedDoc) {
- super(idOfRemovedDoc.toString());
- this.idOfRemovedDoc = idOfRemovedDoc;
- setField("documentid", idOfRemovedDoc.toString());
- }
-
- public DocumentId getIdOfRemovedDoc() {
- return idOfRemovedDoc;
- }
-
-}