diff graal/com.oracle.graal.hotspot.amd64.test/src/com/oracle/graal/hotspot/amd64/test/DataPatchInConstantsTest.java @ 18845:f57d86eb036f

removed Node factory methods
author Doug Simon <doug.simon@oracle.com>
date Mon, 12 Jan 2015 20:39:04 +0100
parents cdb9c605051a
children ec0733b5a90a
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot.amd64.test/src/com/oracle/graal/hotspot/amd64/test/DataPatchInConstantsTest.java	Mon Jan 12 19:05:36 2015 +0100
+++ b/graal/com.oracle.graal.hotspot.amd64.test/src/com/oracle/graal/hotspot/amd64/test/DataPatchInConstantsTest.java	Mon Jan 12 20:39:04 2015 +0100
@@ -157,11 +157,7 @@
 
         @Input protected ValueNode input;
 
-        public static LoadThroughPatchNode create(ValueNode input) {
-            return new LoadThroughPatchNode(input);
-        }
-
-        protected LoadThroughPatchNode(ValueNode input) {
+        public LoadThroughPatchNode(ValueNode input) {
             super(input.stamp());
             this.input = input;
         }