Skip to content

Commit fe31469

Browse files
committed
Adapt to upstream changes after rebase
1 parent cc6a27e commit fe31469

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/type/slots/TpSlotDescrGet.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,6 @@ public Object execute(VirtualFrame frame, Object self, Object objIn, Object type
175175
}
176176
return wrapped.execute(frame, self, obj, type);
177177
}
178-
179-
@Override
180-
protected Object execute1(VirtualFrame frame, Object self, Object obj, Object type) {
181-
return execute(frame, self, obj, type);
182-
}
183178
}
184179

185180
public abstract static class DescrGetBuiltinNode extends PythonTernaryBuiltinNode {

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/type/slots/TpSlotDescrSet.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,6 @@ public final Object execute(VirtualFrame frame, Object arg, Object arg2, Object
175175
executeVoid(frame, arg, arg2, arg3);
176176
return PNone.NONE;
177177
}
178-
179-
@Override
180-
protected final Object execute1(VirtualFrame frame, Object arg, Object arg2, Object arg3) {
181-
executeVoid(frame, arg, arg2, arg3);
182-
return PNone.NONE;
183-
}
184178
}
185179

186180
@GenerateInline

0 commit comments

Comments
 (0)