changeset 16602:a4490086af4d

remove unused setters from BinaryOpLogicNode
author Lukas Stadler <lukas.stadler@oracle.com>
date Mon, 28 Jul 2014 15:53:07 +0200
parents cd25e42d9b22
children 5fcb220206e2
files graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/BinaryOpLogicNode.java
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/BinaryOpLogicNode.java	Mon Jul 28 15:53:07 2014 +0200
+++ b/graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/BinaryOpLogicNode.java	Mon Jul 28 15:53:07 2014 +0200
@@ -38,16 +38,6 @@
         return y;
     }
 
-    protected void setX(ValueNode x) {
-        updateUsages(this.x, x);
-        this.x = x;
-    }
-
-    protected void setY(ValueNode y) {
-        updateUsages(this.y, y);
-        this.y = y;
-    }
-
     public BinaryOpLogicNode(ValueNode x, ValueNode y) {
         assert x != null && y != null && x.getKind() == y.getKind();
         this.x = x;