summaryrefslogtreecommitdiffstats
path: root/container-search
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@verizonmedia.com>2019-10-11 10:05:04 +0200
committerJon Bratseth <bratseth@verizonmedia.com>2019-10-11 10:05:04 +0200
commit0862204e36bc4e47be69480c63bb2980bda88e7a (patch)
tree17bda39f30a19a5bac8fb53a2d654ffcba2b74a6 /container-search
parentb682654c786a94dc7dd564f4bc1047e1ed06500c (diff)
Nonfunctional changes only
Diffstat (limited to 'container-search')
-rw-r--r--container-search/src/main/java/com/yahoo/search/grouping/request/StringBucket.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/container-search/src/main/java/com/yahoo/search/grouping/request/StringBucket.java b/container-search/src/main/java/com/yahoo/search/grouping/request/StringBucket.java
index 5558f1443db..2718abe7ac1 100644
--- a/container-search/src/main/java/com/yahoo/search/grouping/request/StringBucket.java
+++ b/container-search/src/main/java/com/yahoo/search/grouping/request/StringBucket.java
@@ -11,8 +11,8 @@ public class StringBucket extends BucketValue {
/**
* Get the next distinct value.
*
- * @param value The base value.
- * @return the next value.
+ * @param value the base value
+ * @return the next value
*/
public static StringValue nextValue(StringValue value) {
return new StringValue(value.getValue() + " ");
@@ -21,8 +21,8 @@ public class StringBucket extends BucketValue {
/**
* Constructs a new instance of this class.
*
- * @param from The from-value to assign to this.
- * @param to The to-value to assign to this.
+ * @param from the from-value to assign to this
+ * @param to the to-value to assign to this
*/
public StringBucket(String from, String to) {
super(null, null, new StringValue(from), new StringValue(to));
@@ -31,8 +31,8 @@ public class StringBucket extends BucketValue {
/**
* Constructs a new instance of this class.
*
- * @param from The from-value to assign to this.
- * @param to The to-value to assign to this.
+ * @param from the from-value to assign to this
+ * @param to the to-value to assign to this
*/
public StringBucket(ConstantValue<?> from, ConstantValue<?> to) {
super(null, null, from, to);