]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/elaboration/java/EqRelation.java
(refs #7375) Fixed implementation of collectEffects
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / elaboration / java / EqRelation.java
index 7116ed9f1c757f7f8154f2bda97c1ae93e08872f..316506a5c94058de1e1856079e494f6731c3d026 100644 (file)
@@ -75,5 +75,14 @@ public class EqRelation extends AbstractRelation {
     public String toString() {
         return "=";
     }
-    
+
+    @Override
+    public Type getEnforceEffect() {
+        return Types.NO_EFFECTS;
+    }
+
+    @Override
+    public Type getQueryEffect() {
+        return Types.NO_EFFECTS;
+    }
 }