CASC-219: Cleaned up formatting issues

This commit is contained in:
Misagh Moayyed 2014-03-10 05:22:44 -07:00
parent 71b366cbf3
commit b97d03d126
2 changed files with 2 additions and 3 deletions

View File

@ -180,7 +180,6 @@ public class AuthenticationFilter extends AbstractCasFilter {
}
private boolean isRequestUrlExcluded(final HttpServletRequest request) {
if (this.ignoreUrlPatternMatcherStrategyClass == null) {
return false;
}

View File

@ -29,11 +29,11 @@ public interface UrlPatternMatcherStrategy {
* @param url the request url typically with query strings included
* @return true if match is successful
*/
boolean matches(final String url);
boolean matches(String url);
/**
* The pattern against which the url is compared
* @param pattern
*/
void setPattern(final String pattern);
void setPattern(String pattern);
}