Deprecate unnecessary method in SecurityConfig
This commit is contained in:
parent
42721d407b
commit
f71d9df7fe
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue