aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2023-08-13 22:34:38 +0200
committerGitHub <noreply@github.com>2023-08-13 22:34:38 +0200
commite9df5f7b7aa6f9f1301d3d0f83e4749e5758e72d (patch)
treeec597c73426a77d204d45875a60d459163984c46
parentacb4a3cf9ee0a94d7562abbf3a0750cd15ff1847 (diff)
parent094b4aa9189ecfec0a06459d054cc1c588c153cf (diff)
Merge pull request #28031 from vespa-engine/bratseth/public-annotatev8.210.20
Make annotate public
-rw-r--r--client/src/main/java/ai/vespa/client/dsl/NearestNeighbor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/main/java/ai/vespa/client/dsl/NearestNeighbor.java b/client/src/main/java/ai/vespa/client/dsl/NearestNeighbor.java
index 1ae7f5cdfde..7dd45153353 100644
--- a/client/src/main/java/ai/vespa/client/dsl/NearestNeighbor.java
+++ b/client/src/main/java/ai/vespa/client/dsl/NearestNeighbor.java
@@ -14,7 +14,7 @@ public class NearestNeighbor extends QueryChain {
this.nonEmpty = true;
}
- NearestNeighbor annotate(Annotation annotation) {
+ public NearestNeighbor annotate(Annotation annotation) {
this.annotation = annotation;
return this;
}