Skip to content

Commit 5f981e3

Browse files
committed
Fixed style
1 parent 5bd9c24 commit 5f981e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2626,7 +2626,7 @@ private Object makeInt(BigInteger i) {
26262626
}
26272627

26282628
@TruffleBoundary
2629-
private BigInteger op(BigInteger x) {
2629+
private static BigInteger op(BigInteger x) {
26302630
// assumes x >= 0
26312631
if (x.equals(BigInteger.ZERO) || x.equals(BigInteger.ONE)) {
26322632
return x;

0 commit comments

Comments
 (0)