changeset 15160:a47e68e146a2

Truffle: Remove NO_ARGUMENTS from CallTarget interface. It is no longer necessary for the varargs version.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 15 Apr 2014 13:27:16 +0200
parents 2ed720ce9273
children 2c940b1a48d8
files graal/com.oracle.truffle.api/src/com/oracle/truffle/api/CallTarget.java
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/CallTarget.java	Tue Apr 15 13:26:26 2014 +0200
+++ b/graal/com.oracle.truffle.api/src/com/oracle/truffle/api/CallTarget.java	Tue Apr 15 13:27:16 2014 +0200
@@ -29,8 +29,6 @@
  */
 public interface CallTarget {
 
-    public static final Object[] NO_ARGUMENTS = new Object[0];
-
     /**
      * Calls this target as a root method..
      *