NIHVIVO-2508 Fix typo (missing negation operator in test)

This commit is contained in:
ryounes 2011-08-08 16:50:51 +00:00
parent debc7e15e0
commit d438bca997
3 changed files with 5 additions and 5 deletions

View file

@ -59,7 +59,7 @@ public class ObjectPropertyStatementTemplateModel extends PropertyStatementTempl
// Determine whether the statement can be deleted
RequestedAction action = new DropObjectPropStmt(subjectUri, propertyUri, objectUri);
if (policyHelper.isAuthorizedAction(action)) {
if ( ! policyHelper.isAuthorizedAction(action) ) {
return;
}