Skip to content

Commit 541ee3e

Browse files
committed
Changing Fallback to satisfy the style checker.
1 parent 97e5d82 commit 541ee3e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1640,8 +1640,6 @@ abstract static class GetTerminalSizeNode extends PythonUnaryBuiltinNode {
16401640
@CompilationFinal private ConditionProfile errorProfile;
16411641
@CompilationFinal private ConditionProfile overflowProfile;
16421642

1643-
public abstract PTuple execute(Object fd);
1644-
16451643
private CastToIntegerFromIntNode getCastIntNode() {
16461644
if (castIntNode == null) {
16471645
CompilerDirectives.transferToInterpreterAndInvalidate();
@@ -1711,7 +1709,7 @@ PTuple getTerminalSize(PInt fd) {
17111709
}
17121710

17131711
@Fallback
1714-
PTuple getTerminalSize(Object fd) {
1712+
Object getTerminalSize(Object fd) {
17151713
Object value = getCastIntNode().execute(fd);
17161714
if (recursiveNode == null) {
17171715
CompilerDirectives.transferToInterpreterAndInvalidate();

0 commit comments

Comments
 (0)