refactor LogEntry & cleanup stream formatting
This commit is contained in:
@@ -51,6 +51,11 @@ public class Group extends PermissionHolder implements Identifiable<String> {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* check to see if a group inherits a group
|
||||
* @param group The group to check membership of
|
||||
@@ -309,9 +314,4 @@ public class Group extends PermissionHolder implements Identifiable<String> {
|
||||
.map(s -> Patterns.DOT.split(s, 2)[1])
|
||||
.collect(Collectors.toList());
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId() {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user