Deprecate unnecessary method in SecurityConfig

This commit is contained in:
Luke Taylor 2010-08-24 18:26:38 +01:00
parent 42721d407b
commit f71d9df7fe
1 changed files with 4 additions and 0 deletions

View File

@ -66,6 +66,10 @@ public class SecurityConfig implements ConfigAttribute {
return createList(StringUtils.commaDelimitedListToStringArray(access));
}
/**
* @deprecated Use createList instead
*/
@Deprecated
public static List<ConfigAttribute> createSingleAttributeList(String access) {
return createList(access);
}