Removed commented out method.

This commit is contained in:
Luke Taylor 2009-10-07 15:45:32 +00:00
parent 1286741c7c
commit 6aee4f0ee4
1 changed files with 0 additions and 14 deletions

View File

@ -119,20 +119,6 @@ public class DefaultPermissionFactory implements PermissionFactory {
return permission;
}
// public Permission[] buildFromMask(int[] masks) {
// if ((masks == null) || (masks.length == 0)) {
// return new Permission[0];
// }
//
// Permission[] permissions = new Permission[masks.length];
//
// for (int i = 0; i < masks.length; i++) {
// permissions[i] = buildFromMask(masks[i]);
// }
//
// return permissions;
// }
public Permission buildFromName(String name) {
Permission p = registeredPermissionsByName.get(name);