From 5427526bcc21b9c48d6ec0ccf81cd2b6684a7793 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Sat, 21 Sep 2019 12:28:58 -0700 Subject: [PATCH] Fix ApplicationContextRequestMatcher javadoc Fix an error in the `ApplicationContextRequestMatcher` javadoc. --- .../boot/security/servlet/ApplicationContextRequestMatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/security/servlet/ApplicationContextRequestMatcher.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/security/servlet/ApplicationContextRequestMatcher.java index 1e2b661b96..ff1bc115cf 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/security/servlet/ApplicationContextRequestMatcher.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/security/servlet/ApplicationContextRequestMatcher.java @@ -89,7 +89,7 @@ public abstract class ApplicationContextRequestMatcher implements RequestMatc * Method that can be implemented by subclasses that wish to initialize items the * first time that the matcher is called. This method will be called only once and * only if {@link #ignoreApplicationContext(WebApplicationContext)} returns - * {@code true}. Note that the supplied context will be based on the + * {@code false}. Note that the supplied context will be based on the * first request sent to the matcher. * @param context a supplier for the initialized context (may throw an exception) * @see #ignoreApplicationContext(WebApplicationContext)