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:
Luc Maisonobe 2010-02-28 19:44:49 +00:00
parent 3a028a2a94
commit 5340f4c335
1 changed files with 1 additions and 1 deletions

View File

@ -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