CASC-219: Cleaned up formatting issues
This commit is contained in:
parent
71b366cbf3
commit
b97d03d126
|
|
@ -180,7 +180,6 @@ public class AuthenticationFilter extends AbstractCasFilter {
|
|||
}
|
||||
|
||||
private boolean isRequestUrlExcluded(final HttpServletRequest request) {
|
||||
|
||||
if (this.ignoreUrlPatternMatcherStrategyClass == null) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue