removed an unneeded call to reduce()

(the constructor already reduces the fraction)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@759678 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-03-29 13:12:19 +00:00
parent 2fa13fe8c5
commit 6a5a46783f

View File

@ -106,7 +106,7 @@ public class BigFraction extends Number implements Comparable<BigFraction> {
return ZERO; // normalize zero.
}
return new BigFraction(numerator, denominator).reduce();
return new BigFraction(numerator, denominator);
}
/**