Corrected "incorrect numer of tokens" error message in TokenBasedRememberMeServices.

This commit is contained in:
Luke Taylor 2010-01-08 23:57:27 +00:00
parent 51abedcbef
commit bc02fc2de1
1 changed files with 1 additions and 1 deletions

View File

@ -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) + "'");
}