fixed a checkstyle warning concerning extra parentheses
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@917277 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3a028a2a94
commit
5340f4c335
|
@ -708,7 +708,7 @@ public final class MathUtils {
|
|||
"overflow: gcd({0}, {1}) is 2^63",
|
||||
p, q);
|
||||
}
|
||||
return (Math.abs(u) + Math.abs(v));
|
||||
return Math.abs(u) + Math.abs(v);
|
||||
}
|
||||
// keep u and v negative, as negative integers range down to
|
||||
// -2^63, while positive numbers can only be as large as 2^63-1
|
||||
|
|
Loading…
Reference in New Issue