summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-18 14:01:04 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-18 14:01:04 +0200
commitbc8cd87be01af7dc8bb2cb2e3f258868088cd8aa (patch)
tree85b496690c9b1a12021a94051fd1c6b4c8a1c439
parent8cf55a68a9d7b9d5a698738648b557469e66462a (diff)
AcceptAll -> AcceptAllVerifier
-rwxr-xr-xconfig-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
index 39e9f9eb67f..970bf3c453d 100755
--- a/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
+++ b/config-model/src/main/java/com/yahoo/vespa/model/container/ContainerCluster.java
@@ -184,7 +184,7 @@ public final class ContainerCluster
private Optional<String> hostClusterId = Optional.empty();
private Optional<Integer> memoryPercentage = Optional.empty();
- private static class AcceptAll implements ContainerClusterVerifier {
+ private static class AcceptAllVerifier implements ContainerClusterVerifier {
@Override
public boolean acceptComponent(Component component) { return true; }
@@ -193,7 +193,7 @@ public final class ContainerCluster
}
public ContainerCluster(AbstractConfigProducer<?> parent, String subId, String name) {
- this(parent, subId, name, new AcceptAll());
+ this(parent, subId, name, new AcceptAllVerifier());
}
public ContainerCluster(AbstractConfigProducer<?> parent, String subId, String name, ContainerClusterVerifier verifier) {