Skip to content

Commit 1afb641

Browse files
committed
[GR-17737] Invalid Child annotation in AsyncHandler.
1 parent 315b899 commit 1afb641

File tree

1 file changed

+1
-2
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
import com.oracle.truffle.api.TruffleLanguage;
6767
import com.oracle.truffle.api.frame.VirtualFrame;
6868
import com.oracle.truffle.api.nodes.Node;
69-
import com.oracle.truffle.api.nodes.Node.Child;
7069
import com.oracle.truffle.api.profiles.ConditionProfile;
7170

7271
/**
@@ -183,7 +182,7 @@ public boolean isInternal() {
183182
}
184183

185184
private final RootCallTarget callTarget;
186-
@Child CallNode callNode = CallNode.create();
185+
CallNode callNode = CallNode.create();
187186

188187
AsyncHandler(PythonLanguage language) {
189188
callTarget = Truffle.getRuntime().createCallTarget(new CallRootNode(language));

0 commit comments

Comments
 (0)