Skip to content

Commit

Permalink
Unused constructor removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Stoklosa committed May 28, 2017
1 parent 1b4a762 commit d565ede
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ public class HystrixCodaHaleMetricsPublisherCommand implements HystrixMetricsPub

static final Logger logger = LoggerFactory.getLogger(HystrixCodaHaleMetricsPublisherCommand.class);

public HystrixCodaHaleMetricsPublisherCommand(HystrixCommandKey commandKey, HystrixCommandGroupKey commandGroupKey, HystrixCommandMetrics metrics, HystrixCircuitBreaker circuitBreaker, HystrixCommandProperties properties, MetricRegistry metricRegistry) {
this(null, commandKey, commandGroupKey, metrics, circuitBreaker, properties, metricRegistry);
}

public HystrixCodaHaleMetricsPublisherCommand(String metricsRootNode, HystrixCommandKey commandKey, HystrixCommandGroupKey commandGroupKey, HystrixCommandMetrics metrics, HystrixCircuitBreaker circuitBreaker, HystrixCommandProperties properties, MetricRegistry metricRegistry) {
this.metricsRootNode = metricsRootNode;
this.key = commandKey;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ public class HystrixCodaHaleMetricsPublisherThreadPool implements HystrixMetrics

static final Logger logger = LoggerFactory.getLogger(HystrixCodaHaleMetricsPublisherThreadPool.class);

public HystrixCodaHaleMetricsPublisherThreadPool(HystrixThreadPoolKey threadPoolKey, HystrixThreadPoolMetrics metrics, HystrixThreadPoolProperties properties, MetricRegistry metricRegistry) {
this(null, threadPoolKey, metrics,properties, metricRegistry);
}


public HystrixCodaHaleMetricsPublisherThreadPool(String metricsRootNode, HystrixThreadPoolKey threadPoolKey, HystrixThreadPoolMetrics metrics, HystrixThreadPoolProperties properties, MetricRegistry metricRegistry) {
this.metricsRootNode = metricsRootNode;
this.key = threadPoolKey;
Expand Down

0 comments on commit d565ede

Please sign in to comment.