We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6350234 commit 2239f80Copy full SHA for 2239f80
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints/IntBuiltins.java
@@ -84,7 +84,7 @@ protected List<? extends NodeFactory<? extends PythonBuiltinBaseNode>> getNodeFa
84
}
85
86
private abstract static class IntBinaryBuiltinNode extends PythonBinaryBuiltinNode {
87
- BranchProfile divisionByZeroProfile = BranchProfile.create();
+ private final BranchProfile divisionByZeroProfile = BranchProfile.create();
88
89
protected void raiseDivisionByZero(boolean cond) {
90
if (cond) {
0 commit comments