Skip to content
Snippets Groups Projects
Commit 3fc233e0 authored by Tomas Stupka's avatar Tomas Stupka
Browse files

removed obsolete static import

parent c75cfad3
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,6 @@ import com.oracle.truffle.r.runtime.data.RS4Object;
import com.oracle.truffle.r.runtime.data.RSymbol;
import com.oracle.truffle.r.runtime.data.model.RAbstractContainer;
import com.oracle.truffle.r.runtime.env.REnvironment;
import com.oracle.truffle.r.runtime.interop.ConvertForeignObjectNode;
import com.oracle.truffle.r.runtime.nodes.RBaseNode;
/**
......@@ -49,7 +48,7 @@ import com.oracle.truffle.r.runtime.nodes.RBaseNode;
* overridden for some S3/S4 classes. Check if you need to get actual length, or what the 'length'
* function returns, like in {@code seq_along}.
*/
@ImportStatic({Message.class, ConvertForeignObjectNode.class})
@ImportStatic({Message.class})
public abstract class RLengthNode extends RBaseNode {
public abstract int executeInteger(Object value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment