diff graal/com.oracle.max.graal.graph/src/com/oracle/max/graal/graph/NodeArray.java @ 2888:224412c24426

Changed C1X=>Graal and c1x=>graal in Java code.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 08 Jun 2011 13:35:43 +0200
parents 385a4d7c2a78
children d9ee2a573a55
line wrap: on
line diff
--- a/graal/com.oracle.max.graal.graph/src/com/oracle/max/graal/graph/NodeArray.java	Wed Jun 08 13:19:56 2011 +0200
+++ b/graal/com.oracle.max.graal.graph/src/com/oracle/max/graal/graph/NodeArray.java	Wed Jun 08 13:35:43 2011 +0200
@@ -44,7 +44,7 @@
     private Node self() {
         return this.node;
     }
-    
+
     Node silentSet(int index, Node node) {
         Node result = nodes[index];
         nodes[index] = node;
@@ -113,7 +113,7 @@
         }
         return false;
     }
-    
+
     public int remove(Node n) {
         return replace(n, null);
     }
@@ -128,7 +128,7 @@
         }
         return result;
     }
-    
+
     int silentRemove(Node n) {
         return silentReplace(n, null);
     }