Skip to content
Snippets Groups Projects

F fsm

Merged Timm Fitschen requested to merge f-fsm into dev
2 files
+ 6
2
Compare changes
  • Side-by-side
  • Inline

Files

@@ -253,7 +253,9 @@ public class EntityACL {
public final Element toElement() {
final Element ret = new Element("EntityACL");
for (final EntityACI aci : this.acl) {
final List<EntityACI> localAcl = new ArrayList<>(this.acl);
localAcl.addAll(GLOBAL_PERMISSIONS.acl);
for (final EntityACI aci : localAcl) {
final boolean isDenial = isDenial(aci.getBitSet());
final boolean isPriority = isPriorityBitSet(aci.getBitSet());
final Element e = new Element(isDenial ? "Deny" : "Grant");
Loading