refactor LogEntry & cleanup stream formatting

This commit is contained in:
Luck
2016-08-18 00:07:56 +01:00
Unverified
parent ca9037461a
commit 84afbf26f8
49 changed files with 506 additions and 409 deletions
@@ -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;
}
}