From 87de8a5e155b81b25cfb33ae64519340eaa66174 Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Tue, 24 Mar 2020 23:11:05 +0100 Subject: [PATCH] Fix checkstyle issue --- .../boot/autoconfigure/web/reactive/WebFluxProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxProperties.java index aafa45e07c..bb4293f61f 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/WebFluxProperties.java @@ -44,7 +44,7 @@ public class WebFluxProperties { private String staticPathPattern = "/**"; public String getBasePath() { - return basePath; + return this.basePath; } public void setBasePath(String basePath) {