From 1fde80024186309b0fcc41d20492178ee1fa87ac Mon Sep 17 00:00:00 2001 From: Matt Jacobs Date: Wed, 16 Mar 2016 16:54:21 -0700 Subject: [PATCH] Remove unused method HystrixCollapserProperties.getProperty(String, HystrixCollapserKey, String, String, String) --- .../com/netflix/hystrix/HystrixCollapserProperties.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCollapserProperties.java b/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCollapserProperties.java index 5e6afc4b6..64c84b1f5 100644 --- a/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCollapserProperties.java +++ b/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCollapserProperties.java @@ -88,14 +88,6 @@ private static HystrixProperty getProperty(String propertyPrefix, Hystr .build(); } - @SuppressWarnings("unused") - private static HystrixProperty getProperty(String propertyPrefix, HystrixCollapserKey key, String instanceProperty, String builderOverrideValue, String defaultValue) { - return forString() - .add(propertyPrefix + ".collapser." + key.name() + "." + instanceProperty, builderOverrideValue) - .add(propertyPrefix + ".collapser.default." + instanceProperty, defaultValue) - .build(); - } - /** * Whether request caching is enabled for {@link HystrixCollapser#execute} and {@link HystrixCollapser#queue} invocations. *