diff --git a/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java b/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java index db9c976f7..6403d5c68 100644 --- a/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java +++ b/hystrix-core/src/main/java/com/netflix/hystrix/HystrixCommandMetrics.java @@ -59,8 +59,6 @@ public class HystrixCommandMetrics { * Pass-thru to {@link HystrixCommandMetrics} instance on first time when constructed * @param properties * Pass-thru to {@link HystrixCommandMetrics} instance on first time when constructed - * @param eventNotifier - * Pass-thru to {@link HystrixCommandMetrics} instance on first time when constructed * @return {@link HystrixCommandMetrics} */ public static HystrixCommandMetrics getInstance(HystrixCommandKey key, HystrixCommandGroupKey commandGroup, HystrixCommandProperties properties) { diff --git a/hystrix-core/src/main/java/com/netflix/hystrix/strategy/HystrixPlugins.java b/hystrix-core/src/main/java/com/netflix/hystrix/strategy/HystrixPlugins.java index df7fc52b6..a5ca95acb 100644 --- a/hystrix-core/src/main/java/com/netflix/hystrix/strategy/HystrixPlugins.java +++ b/hystrix-core/src/main/java/com/netflix/hystrix/strategy/HystrixPlugins.java @@ -52,8 +52,6 @@ public static HystrixPlugins getInstance() { /** * Retrieve instance of {@link HystrixEventNotifier} to use based on order of precedence as defined in {@link HystrixPlugins} class header. * - * @param injected - * {@link HystrixEventNotifier} implementation as injected via {@link HystrixCommand} * @return {@link HystrixEventNotifier} implementation to use */ public HystrixEventNotifier getEventNotifier() { @@ -79,8 +77,6 @@ public void registerEventNotifier(HystrixEventNotifier impl) { /** * Retrieve instance of {@link HystrixConcurrencyStrategy} to use based on order of precedence as defined in {@link HystrixPlugins} class header. * - * @param injected - * {@link HystrixConcurrencyStrategy} implementation as injected via {@link HystrixCommand} * @return {@link HystrixConcurrencyStrategy} implementation to use */ public HystrixConcurrencyStrategy getConcurrencyStrategy() { @@ -106,8 +102,6 @@ public void registerConcurrencyStrategy(HystrixConcurrencyStrategy impl) { /** * Retrieve instance of {@link HystrixMetricsPublisher} to use based on order of precedence as defined in {@link HystrixPlugins} class header. * - * @param injected - * {@link HystrixMetricsPublisher} implementation as injected via {@link HystrixCommand} * @return {@link HystrixMetricsPublisher} implementation to use */ public HystrixMetricsPublisher getMetricsPublisher() { @@ -133,8 +127,6 @@ public void registerMetricsPublisher(HystrixMetricsPublisher impl) { /** * Retrieve instance of {@link HystrixPropertiesStrategy} to use based on order of precedence as defined in {@link HystrixPlugins} class header. * - * @param injected - * {@link HystrixPropertiesStrategy} implementation as injected via {@link HystrixCommand} * @return {@link HystrixPropertiesStrategy} implementation to use */ public HystrixPropertiesStrategy getPropertiesStrategy() {