changeset 10843:50f3f3958555

Truffle: remove Node.EMPTY_ARRAY constant
author Andreas Woess <andreas.woess@jku.at>
date Mon, 22 Jul 2013 16:17:45 +0200
parents 63c3d7b5edd9
children 3cf5f371dc9f
files graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/Node.java
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/Node.java	Mon Jul 22 16:19:39 2013 +0200
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/Node.java	Mon Jul 22 16:17:45 2013 +0200
@@ -33,11 +33,6 @@
  */
 public abstract class Node implements Cloneable {
 
-    /**
-     * Utility constant representing an empty node array.
-     */
-    public static final Node[] EMPTY_ARRAY = new Node[0];
-
     private Node parent;
 
     private SourceSection sourceSection;