Skip to content

Commit 95526bf

Browse files
committed
remove unused code
1 parent 0f192e0 commit 95526bf

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/GraalHPyDebugModuleBuiltins.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,6 @@ static final class NotAvailable extends PythonBuiltinNode {
127127
public Object execute(VirtualFrame frame) {
128128
throw PRaiseNode.raiseUncached(this, PythonBuiltinClassType.RuntimeError, ErrorMessages.HPY_DEBUG_MODE_NOT_AVAILABLE);
129129
}
130-
131-
@Override
132-
protected ReadArgumentNode[] getArguments() {
133-
return EMPTY_ARGS;
134-
}
135130
}
136131

137132
@TruffleBoundary

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/function/PythonBuiltinNode.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,5 @@
3131

3232
@NodeChild(value = "arguments", type = ReadArgumentNode[].class)
3333
public abstract class PythonBuiltinNode extends PythonBuiltinBaseNode {
34-
3534
public abstract Object execute(VirtualFrame frame);
36-
37-
protected abstract ReadArgumentNode[] getArguments();
3835
}

0 commit comments

Comments
 (0)