diff truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java @ 22325:414e82b9fc35

Release 0.9 is out, let's remove deprecated elements from the API
author Jaroslav Tulach <jaroslav.tulach@oracle.com>
date Fri, 23 Oct 2015 20:23:00 +0200
parents 3168715cb34d
children 5d62f7cfe0e1
line wrap: on
line diff
--- a/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java	Fri Oct 23 20:22:44 2015 +0200
+++ b/truffle/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java	Fri Oct 23 20:23:00 2015 +0200
@@ -49,33 +49,6 @@
     @CompilationFinal private FrameDescriptor frameDescriptor;
 
     /**
-     * @deprecated each RootNode should be associated with a {@link TruffleLanguage} use constructor
-     *             that allows you to specify it. This method will be removed on Aug 15, 2015.
-     */
-    @Deprecated
-    protected RootNode() {
-        this(null, null, null, false);
-    }
-
-    /**
-     * @deprecated each RootNode should be associated with a {@link TruffleLanguage} use constructor
-     *             that allows you to specify it. This method will be removed on Aug 15, 2015.
-     */
-    @Deprecated
-    protected RootNode(SourceSection sourceSection) {
-        this(null, sourceSection, null, false);
-    }
-
-    /**
-     * @deprecated each RootNode should be associated with a {@link TruffleLanguage} use constructor
-     *             that allows you to specify it. This method will be removed on Aug 15, 2015.
-     */
-    @Deprecated
-    protected RootNode(SourceSection sourceSection, FrameDescriptor frameDescriptor) {
-        this(null, sourceSection, frameDescriptor, false);
-    }
-
-    /**
      * Creates new root node. Each {@link RootNode} is associated with a particular language - if
      * the root node represents a method it is assumed the method is written in such language.
      * <p>