summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2018-08-21 09:38:18 +0200
committerJon Bratseth <bratseth@oath.com>2018-08-21 09:38:18 +0200
commit51318703c054e71ce575d5edde90c6f84c3fedfd (patch)
tree4f3ee7da58e8a4d399ee664d94ec6c790592b961
parent5f4168bb32e20f5700b8e63a38b52e3d83a0e3a0 (diff)
Nonfunctional changes only
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/model/content/Redundancy.java2
-rw-r--r--container-search/src/main/java/com/yahoo/search/query/Model.java2
2 files changed, 3 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/content/Redundancy.java b/config-model/src/main/java/com/yahoo/vespa/model/content/Redundancy.java
index 6d91ae6e540..b21a0da0d57 100644
--- a/config-model/src/main/java/com/yahoo/vespa/model/content/Redundancy.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/content/Redundancy.java
@@ -41,6 +41,7 @@ public class Redundancy implements StorDistributionConfig.Producer, ProtonConfig
* values returned in the config.
*/
public void setImplicitGroups(int implicitGroups) { this.implicitGroups = implicitGroups; }
+
public void setExplicitGroups(int explicitGroups) { this.explicitGroups = explicitGroups; }
public int initialRedundancy() { return initialRedundancy; }
@@ -72,4 +73,5 @@ public class Redundancy implements StorDistributionConfig.Producer, ProtonConfig
distBuilder.searchablecopies(searchableCopies());
builder.distribution(distBuilder);
}
+
}
diff --git a/container-search/src/main/java/com/yahoo/search/query/Model.java b/container-search/src/main/java/com/yahoo/search/query/Model.java
index cbc15bf39a1..95cd3849cf6 100644
--- a/container-search/src/main/java/com/yahoo/search/query/Model.java
+++ b/container-search/src/main/java/com/yahoo/search/query/Model.java
@@ -67,7 +67,7 @@ public class Model implements Cloneable {
public static QueryProfileType getArgumentType() { return argumentType; }
/** The name of the query property used for generating hit count estimate queries. */
- public static final CompoundName ESTIMATE = new CompoundName("hitcountestimate");
+ public static final CompoundName ESTIMATE = new CompoundName("hitcountestimate"); // TODO:Cleanup
private String encoding = null;
private String queryString = "";