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) {
|
||||
|
||||
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) + "'");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue