Skip to content
Snippets Groups Projects
Verified Commit 0300902d authored by Timm Fitschen's avatar Timm Fitschen
Browse files

cleanup

parent 01c58e79
No related branches found
No related tags found
3 merge requests!21Release v0.4.0,!7F fsm,!6Draft: F acm permissions2
Pipeline #5932 passed
......@@ -30,7 +30,7 @@ import org.jdom2.Element;
* UpdateEntity class represents entities which are to be updated. The previous version is appeded
* during the {@link WriteTransaction} transactions initialization.
*
* @author Timm Fitschen (t.fitschen@indiscale.com)
* @author Timm Fitschen <t.fitschen@indiscale.com>
*/
public class UpdateEntity extends WritableEntity {
......
......@@ -103,7 +103,7 @@ public class EntityACL {
}
public static final EntityACL getOwnerACLFor(final ResponsibleAgent agent) {
final AbstractEntityACLFactory<EntityACL> f = new EntityACLFactory();
final EntityACLFactory f = new EntityACLFactory();
f.grant(agent, "*");
return f.create();
}
......@@ -291,7 +291,7 @@ public class EntityACL {
* @return
*/
public static final EntityACL parseFromElement(final Element e) {
final AbstractEntityACLFactory<EntityACL> factory = new EntityACLFactory();
final EntityACLFactory factory = new EntityACLFactory();
for (final Element c : e.getChildren()) {
boolean priority;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment