From d2418b99ef96450104f978d8e50c7ca762235080 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Thu, 8 Feb 2018 17:19:19 -0800 Subject: [PATCH] Fix checkstyle errors --- .../endpoint/web/jersey/JerseyWebEndpointIntegrationTests.java | 2 +- .../endpoint/web/reactive/WebFluxEndpointIntegrationTests.java | 2 +- .../endpoint/web/servlet/MvcWebEndpointIntegrationTests.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyWebEndpointIntegrationTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyWebEndpointIntegrationTests.java index 586a85f88c..b2b3fbbbfb 100644 --- a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyWebEndpointIntegrationTests.java +++ b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyWebEndpointIntegrationTests.java @@ -142,7 +142,7 @@ public class JerseyWebEndpointIntegrationTests extends private static class MockPrincipalWrapper extends HttpServletRequestWrapper { - public MockPrincipalWrapper(HttpServletRequest request) { + MockPrincipalWrapper(HttpServletRequest request) { super(request); } diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/reactive/WebFluxEndpointIntegrationTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/reactive/WebFluxEndpointIntegrationTests.java index d0afb7a017..a1db891b19 100644 --- a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/reactive/WebFluxEndpointIntegrationTests.java +++ b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/reactive/WebFluxEndpointIntegrationTests.java @@ -164,7 +164,7 @@ public class WebFluxEndpointIntegrationTests private static class MockPrincipalServerWebExchangeDecorator extends ServerWebExchangeDecorator { - protected MockPrincipalServerWebExchangeDecorator(ServerWebExchange delegate) { + MockPrincipalServerWebExchangeDecorator(ServerWebExchange delegate) { super(delegate); } diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/servlet/MvcWebEndpointIntegrationTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/servlet/MvcWebEndpointIntegrationTests.java index 64fcc7a047..baa7101558 100644 --- a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/servlet/MvcWebEndpointIntegrationTests.java +++ b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/web/servlet/MvcWebEndpointIntegrationTests.java @@ -156,7 +156,7 @@ public class MvcWebEndpointIntegrationTests extends private static class MockPrincipalWrapper extends HttpServletRequestWrapper { - public MockPrincipalWrapper(HttpServletRequest request) { + MockPrincipalWrapper(HttpServletRequest request) { super(request); }