Skip to content

Commit 7599447

Browse files
committed
Fix style
1 parent 099ca05 commit 7599447

File tree

1 file changed

+2
-2
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/type

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ public final Object varArgExecute(VirtualFrame frame, Object self, Object[] argu
376376
return execute(frame, self, arguments, keywords);
377377
}
378378

379-
public CallNodeHelper getCallNodeHelper() {
379+
private CallNodeHelper getCallNodeHelper() {
380380
if (callNodeHelper == null) {
381381
CompilerDirectives.transferToInterpreterAndInvalidate();
382382
callNodeHelper = insert(CallNodeHelperNodeGen.create());
@@ -1053,7 +1053,7 @@ abstract static class AbstractSlotNode extends PythonBinaryBuiltinNode {
10531053

10541054
@GenerateInline
10551055
@GenerateCached(false)
1056-
static abstract class CheckSetSpecialTypeAttrNode extends Node {
1056+
abstract static class CheckSetSpecialTypeAttrNode extends Node {
10571057
abstract void execute(Node inliningTarget, Object type, Object value, TruffleString name);
10581058

10591059
@Specialization

0 commit comments

Comments
 (0)