NIHVIVO-2508 Fix typo (missing negation operator in test)
This commit is contained in:
parent
debc7e15e0
commit
d438bca997
3 changed files with 5 additions and 5 deletions
|
@ -59,7 +59,7 @@ public class ObjectPropertyStatementTemplateModel extends PropertyStatementTempl
|
||||||
|
|
||||||
// Determine whether the statement can be deleted
|
// Determine whether the statement can be deleted
|
||||||
RequestedAction action = new DropObjectPropStmt(subjectUri, propertyUri, objectUri);
|
RequestedAction action = new DropObjectPropStmt(subjectUri, propertyUri, objectUri);
|
||||||
if (policyHelper.isAuthorizedAction(action)) {
|
if ( ! policyHelper.isAuthorizedAction(action) ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue