Skip to content

Commit 9875643

Browse files
committed
fix indent
1 parent 248d362 commit 9875643

File tree

1 file changed

+6
-6
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints

1 file changed

+6
-6
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ints/IntBuiltins.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -807,12 +807,12 @@ private Object objectOp(Object left, Object right, Object mod) {
807807
} else if (bigMod.signum() < 0) {
808808
BigInteger bigModPos = bigMod.abs();
809809
try {
810-
BigInteger pow = bigLeft.modPow(bigRight, bigModPos);
811-
if (!BigInteger.ZERO.equals(pow)) {
812-
return pow.subtract(bigModPos);
813-
} else {
814-
return pow;
815-
}
810+
BigInteger pow = bigLeft.modPow(bigRight, bigModPos);
811+
if (!BigInteger.ZERO.equals(pow)) {
812+
return pow.subtract(bigModPos);
813+
} else {
814+
return pow;
815+
}
816816
} catch (ArithmeticException e) {
817817
// bigModPos was used, so this exception must mean the exponent was negative
818818
return Math.pow(bigLeft.doubleValue(), bigRight.doubleValue()) % bigMod.doubleValue();

0 commit comments

Comments
 (0)