From: Marko Luukkainen Date: Mon, 25 Feb 2019 12:21:42 +0000 (+0000) Subject: Merge "DelayedWriteGraph denyValue should deny the value statement as well" into... X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=commitdiff_plain;h=a41e6ca92a50b8062a9d865e1de8fa7b87115025;hp=682e6248064374437364c3f209699321f466ce3e;p=simantics%2Fplatform.git Merge "DelayedWriteGraph denyValue should deny the value statement as well" into release/1.35.1 --- diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/graph/DelayedWriteGraph.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/graph/DelayedWriteGraph.java index 44e23d017..f8797b251 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/graph/DelayedWriteGraph.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/graph/DelayedWriteGraph.java @@ -492,6 +492,7 @@ public class DelayedWriteGraph extends ReadGraphImpl implements WriteGraph, Byte if (valueStatement != null && !valueStatement.isAsserted(resource)) { Resource value = valueStatement.getObject(); + deny(valueStatement); denyValue(value); } }