removed secondary call to response.encodeRedirectUrl because according to the Tomcat source code they essentially do the same thing.
This commit is contained in:
Scott Battaglia 2010-07-20 02:33:36 +00:00
parent b1f6e24f7e
commit 649b39b1c8
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public abstract class AbstractTicketValidationFilter extends AbstractCasFilter {
if (this.redirectAfterValidation) {
log. debug("Redirecting after successful ticket validation.");
response.sendRedirect(response.encodeRedirectURL(constructServiceUrl(request, response)));
response.sendRedirect(constructServiceUrl(request, response));
return;
}
} catch (final TicketValidationException e) {