Skip to content

Commit 5fb993a

Browse files
committed
small cleanups
1 parent 6d673d6 commit 5fb993a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/set/FrozenSetBuiltins.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ abstract static class AndNode extends PythonBinaryBuiltinNode {
156156
private HashingStorageNodes.SetItemNode getSetItemNode() {
157157
if (setItemNode == null) {
158158
CompilerDirectives.transferToInterpreterAndInvalidate();
159-
setItemNode = HashingStorageNodes.SetItemNode.create();
159+
setItemNode = insert(HashingStorageNodes.SetItemNode.create());
160160
}
161161
return setItemNode;
162162
}

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/PBaseNode.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
import com.oracle.truffle.api.nodes.Node;
5656

5757
public abstract class PBaseNode extends Node {
58-
@CompilationFinal private PythonContext context;
5958
@Child private PythonObjectFactory factory;
6059
@CompilationFinal private ContextReference<PythonContext> contextRef;
6160

0 commit comments

Comments
 (0)