Skip to content

Commit 03f1c3a

Browse files
committed
Fix style
1 parent 1a471a7 commit 03f1c3a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ public Object execute(VirtualFrame frame) {
415415
PCell[] frameClosure = PArguments.getClosure(frame);
416416
assert frameClosure.length == 1 : "invalid closure for MethDirectRoot";
417417
Object callable = ensureReadTargetCellNode().execute(frameClosure[CELL_INDEX_TARGET]);
418-
418+
419419
if (externalInvokeNode != null) {
420420
Object[] cArguments = prepareCArguments(frame);
421421
try {

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/common/CExtContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public abstract class CExtContext {
6262

6363
/** A factory for creating context-specific conversion nodes. */
6464
private final ConversionNodeSupplier supplier;
65-
65+
6666
public CExtContext(PythonContext context, Object llvmLibrary, ConversionNodeSupplier supplier) {
6767
this.context = context;
6868
this.llvmLibrary = llvmLibrary;

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/function/PBuiltinFunction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public final class PBuiltinFunction extends PythonBuiltinObject implements Bound
8989
public PBuiltinFunction(PythonLanguage lang, String name, Object enclosingType, int numDefaults, RootCallTarget callTarget) {
9090
this(lang, name, enclosingType, numDefaults, null, callTarget);
9191
}
92-
92+
9393
public PBuiltinFunction(PythonLanguage lang, String name, Object enclosingType, int numDefaults, PCell[] closure, RootCallTarget callTarget) {
9494
super(PythonBuiltinClassType.PBuiltinFunction, PythonBuiltinClassType.PBuiltinFunction.getInstanceShape(lang));
9595
this.name = name;

0 commit comments

Comments
 (0)