From 783af4012bf2035fde7806d9aa970939ee142ec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Kj=C3=A4ll?= Date: Tue, 19 Nov 2013 08:58:43 +0100 Subject: [PATCH] SEC-2518: UserDetailsService javadoc repeats "insensitive" Typo in javadoc, "case insensitive" was repeated twice. --- .../security/core/userdetails/UserDetailsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/core/userdetails/UserDetailsService.java b/core/src/main/java/org/springframework/security/core/userdetails/UserDetailsService.java index bdab2b878e..b4676561c3 100644 --- a/core/src/main/java/org/springframework/security/core/userdetails/UserDetailsService.java +++ b/core/src/main/java/org/springframework/security/core/userdetails/UserDetailsService.java @@ -35,7 +35,7 @@ public interface UserDetailsService { /** * Locates the user based on the username. In the actual implementation, the search may possibly be case - * insensitive, or case insensitive depending on how the implementation instance is configured. In this case, the + * sensitive, or case insensitive depending on how the implementation instance is configured. In this case, the * UserDetails object that comes back may have a username that is of a different case than what was * actually requested.. *