From 1d86bb51f6378476f14d815db452511fac6c78b5 Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Thu, 16 May 2019 18:46:54 +0200 Subject: [PATCH] Formatting fixes with updated spring java-format plugin. --- .../filter/factory/HystrixGatewayFilterFactory.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/filter/factory/HystrixGatewayFilterFactory.java b/spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/filter/factory/HystrixGatewayFilterFactory.java index 21f3f7f9..c6d1abf2 100644 --- a/spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/filter/factory/HystrixGatewayFilterFactory.java +++ b/spring-cloud-gateway-core/src/main/java/org/springframework/cloud/gateway/filter/factory/HystrixGatewayFilterFactory.java @@ -50,7 +50,9 @@ import static org.springframework.cloud.gateway.support.ServerWebExchangeUtils.G import static org.springframework.cloud.gateway.support.ServerWebExchangeUtils.containsEncodedParts; /** - * Depends on `spring-cloud-starter-netflix-hystrix`, {@see https://cloud.spring.io/spring-cloud-netflix/} + * Depends on `spring-cloud-starter-netflix-hystrix`, + * {@see https://cloud.spring.io/spring-cloud-netflix/}. + * * @author Spencer Gibb * @author Michele Mancioppi * @author Olga Maciaszek-Sharma @@ -60,10 +62,12 @@ public class HystrixGatewayFilterFactory extends AbstractGatewayFilterFactory dispatcherHandlerProvider; - //do not use this dispatcherHandler directly, use getDispatcherHandler() instead. + + // do not use this dispatcherHandler directly, use getDispatcherHandler() instead. private volatile DispatcherHandler dispatcherHandler; - public HystrixGatewayFilterFactory(ObjectProvider dispatcherHandlerProvider) { + public HystrixGatewayFilterFactory( + ObjectProvider dispatcherHandlerProvider) { super(Config.class); this.dispatcherHandlerProvider = dispatcherHandlerProvider; }