mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-12 21:33:30 +00:00
Corrected "incorrect numer of tokens" error message in TokenBasedRememberMeServices.
This commit is contained in:
parent
51abedcbef
commit
bc02fc2de1
@ -85,7 +85,7 @@ public class TokenBasedRememberMeServices extends AbstractRememberMeServices {
|
|||||||
HttpServletResponse response) {
|
HttpServletResponse response) {
|
||||||
|
|
||||||
if (cookieTokens.length != 3) {
|
if (cookieTokens.length != 3) {
|
||||||
throw new InvalidCookieException("Cookie token did not contain " + 2 +
|
throw new InvalidCookieException("Cookie token did not contain 3" +
|
||||||
" tokens, but contained '" + Arrays.asList(cookieTokens) + "'");
|
" tokens, but contained '" + Arrays.asList(cookieTokens) + "'");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user