From 794b28524b227be3b1417fe0aa9c02739f1cab16 Mon Sep 17 00:00:00 2001 From: Harald Musum Date: Tue, 29 Jun 2021 15:15:58 +0200 Subject: Remove dead code and update when interface method can be removed --- .../main/java/com/yahoo/config/model/deploy/TestProperties.java | 7 ------- 1 file changed, 7 deletions(-) (limited to 'config-model') diff --git a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java index c62dc6e4631..308dcf25d2a 100644 --- a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java +++ b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java @@ -54,7 +54,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea private double feedConcurrency = 0.5; private boolean enableFeedBlockInDistributor = true; private boolean useExternalRankExpression = false; - private int clusterControllerMaxHeapSizeInMb = 128; private int maxActivationInhibitedOutOfSyncGroups = 0; private List tenantSecretStores = Collections.emptyList(); private String jvmOmitStackTraceInFastThrowOption; @@ -96,7 +95,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea @Override public boolean useAsyncMessageHandlingOnSchedule() { return useAsyncMessageHandlingOnSchedule; } @Override public double feedConcurrency() { return feedConcurrency; } @Override public boolean enableFeedBlockInDistributor() { return enableFeedBlockInDistributor; } - @Override public int clusterControllerMaxHeapSizeInMb() { return clusterControllerMaxHeapSizeInMb; } @Override public int maxActivationInhibitedOutOfSyncGroups() { return maxActivationInhibitedOutOfSyncGroups; } @Override public List tenantSecretStores() { return tenantSecretStores; } @Override public String jvmOmitStackTraceInFastThrowOption(ClusterSpec.Type type) { return jvmOmitStackTraceInFastThrowOption; } @@ -232,11 +230,6 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea return this; } - public TestProperties clusterControllerMaxHeapSizeInMb(int heapSize) { - clusterControllerMaxHeapSizeInMb = heapSize; - return this; - } - public TestProperties maxActivationInhibitedOutOfSyncGroups(int nGroups) { maxActivationInhibitedOutOfSyncGroups = nGroups; return this; -- cgit v1.2.3