From 28855e9cd63b37f33c43ffdcd673a7fc25d9e328 Mon Sep 17 00:00:00 2001 From: Clement Ng Date: Thu, 4 Jul 2019 23:38:28 -0700 Subject: [PATCH] Changed docs to reflect that init should apply configurers --- .../security/config/annotation/SecurityConfigurer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/src/main/java/org/springframework/security/config/annotation/SecurityConfigurer.java b/config/src/main/java/org/springframework/security/config/annotation/SecurityConfigurer.java index 63b8c62362..4ddba28274 100644 --- a/config/src/main/java/org/springframework/security/config/annotation/SecurityConfigurer.java +++ b/config/src/main/java/org/springframework/security/config/annotation/SecurityConfigurer.java @@ -34,7 +34,7 @@ public interface SecurityConfigurer> { * Initialize the {@link SecurityBuilder}. Here only shared state should be created * and modified, but not properties on the {@link SecurityBuilder} used for building * the object. This ensures that the {@link #configure(SecurityBuilder)} method uses - * the correct shared objects when building. + * the correct shared objects when building. Configurers should be applied here. * * @param builder * @throws Exception