aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/grouping/GroupingRequest.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/main/java/com/yahoo/search/grouping/GroupingRequest.java')
-rw-r--r--container-search/src/main/java/com/yahoo/search/grouping/GroupingRequest.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/grouping/GroupingRequest.java b/container-search/src/main/java/com/yahoo/search/grouping/GroupingRequest.java
index 83eca89dffa..13c23234910 100644
--- a/container-search/src/main/java/com/yahoo/search/grouping/GroupingRequest.java
+++ b/container-search/src/main/java/com/yahoo/search/grouping/GroupingRequest.java
@@ -121,20 +121,6 @@ public class GroupingRequest {
}
/**
- * Sets the result {@link RootGroup} of this request. This is used by the executing grouping searcher, and should
- * not be called by a requesting searcher.
- *
- * @param group the result to set.
- * @return this, to allow chaining.
- * @deprecated this is a noop
- */
- // TODO: Remove on Vespa 7
- @Deprecated // OK
- public GroupingRequest setResultGroup(RootGroup group) {
- return this;
- }
-
- /**
* Returns the list of {@link Continuation}s of this request. This is used by the executing grouping searcher to
* allow pagination of grouping results.
*
@@ -156,21 +142,6 @@ public class GroupingRequest {
return newRequest;
}
- /**
- * Returns all instances of this class that have been attached to the given {@link Query}. If no requests have been
- * attached to the {@link Query}, this method returns an empty list.
- *
- * @param query the query whose requests to return.
- * @return the list of grouping requests.
- * @deprecated use query.getSelect().getGrouping()
- */
- @SuppressWarnings({ "unchecked" })
- // TODO: Remove on Vespa 7
- @Deprecated // OK
- public static List<GroupingRequest> getRequests(Query query) {
- return query.getSelect().getGrouping();
- }
-
@Override
public String toString() {
return root == null ? "(empty)" : root.toString();