Make method in MatcherType public for use in OAuth.

This commit is contained in:
Luke Taylor 2010-09-25 20:09:12 +01:00
parent f978814bb1
commit e69b981c72
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public enum MatcherType {
this.type = type;
}
BeanDefinition createMatcher(String path, String method) {
public BeanDefinition createMatcher(String path, String method) {
if ("/**".equals(path) && method == null) {
return new RootBeanDefinition(AnyRequestMatcher.class);
}