Skip to content

Commit e85daaf

Browse files
committed
style
1 parent 01c4edb commit e85daaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/call/GenericInvokeNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public final Object execute(VirtualFrame frame, Object callee, Object[] argument
9191
* Can be used when this node is called unadopted or from a place where no frame is available.
9292
* However, it will be slower than passing a frame, because the threadstate is read from the
9393
* Python context.
94-
*
94+
*
9595
* @param callee - either a {@link PFunction}, {@link PBuiltinFunction}, or
9696
* {@link RootCallTarget}.
9797
* @param arguments - the complete (runtime + user) frame arguments for the call
@@ -112,7 +112,7 @@ private Object doCall(Frame frame, RootCallTarget callTarget, Object[] arguments
112112
}
113113
} else {
114114
assert frame instanceof VirtualFrame : "GenericInvokeNode should not be executed with non-virtual frames";
115-
callContext.prepareCall((VirtualFrame) frame, arguments, callTarget, this);
115+
callContext.prepareCall((VirtualFrame) frame, arguments, callTarget, this);
116116
return callNode.call(callTarget, arguments);
117117
}
118118
}

0 commit comments

Comments
 (0)