Steve Riesenberg 1 rok pred
rodič
commit
d0a5ada2da

+ 2 - 2
core/src/main/java/org/springframework/security/authentication/jaas/AbstractJaasAuthenticationProvider.java

@@ -318,8 +318,8 @@ public abstract class AbstractJaasAuthenticationProvider implements Authenticati
 	}
 
 	/**
-	 * Set the JAASAuthenticationCallbackHandler array to handle callback objects generated
-	 * by the LoginContext.login method.
+	 * Set the JAASAuthenticationCallbackHandler array to handle callback objects
+	 * generated by the LoginContext.login method.
 	 * @param callbackHandlers Array of JAASAuthenticationCallbackHandlers
 	 */
 	public void setCallbackHandlers(JaasAuthenticationCallbackHandler[] callbackHandlers) {

+ 2 - 1
web/src/main/java/org/springframework/security/web/authentication/www/BasicAuthenticationFilter.java

@@ -221,7 +221,8 @@ public class BasicAuthenticationFilter extends OncePerRequestFilter {
 			return true;
 		}
 		// Handle unusual condition where an AnonymousAuthenticationToken is already
-		// present. This shouldn't happen very often, as BasicAuthenticationFilter is meant to
+		// present. This shouldn't happen very often, as BasicAuthenticationFilter is
+		// meant to
 		// be earlier in the filter chain than AnonymousAuthenticationFilter.
 		// Nevertheless, presence of both an AnonymousAuthenticationToken together with a
 		// BASIC authentication request header should indicate reauthentication using the