From fe1c4a3b4bcb783270ecc5105691f7818eb39cf8 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 63b8c62362f..4ddba282745 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