Skip to content

Commit ac675d3

Browse files
author
Adam Hrbac
committed
Minor style changes
1 parent 37b98cc commit ac675d3

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/generator/PGenerator.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ public final class PGenerator extends PythonBuiltinObject {
6666
private final boolean isCoroutine;
6767

6868
// An explicit isIterableCoroutine argument is needed for iterable coroutines (generally created
69-
// via
70-
// types.coroutine)
69+
// via types.coroutine)
7170
public static PGenerator create(PythonLanguage lang, TruffleString name, TruffleString qualname, PBytecodeRootNode rootNode, RootCallTarget[] callTargets, Object[] arguments,
7271
PythonBuiltinClassType cls, boolean isIterableCoroutine) {
7372
rootNode.createGeneratorFrame(arguments);

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonContext.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,6 @@ public static final class PythonThreadState {
292292
/*
293293
* The current running event loop
294294
*/
295-
296295
Object runningEventLoop;
297296

298297
/*

0 commit comments

Comments
 (0)