removing unneeded call to reduce()

(convergents are already reduced by construction)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@617399 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-02-01 09:34:13 +00:00
parent 20cc568180
commit c000595d82
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ public class Fraction extends Number implements Comparable {
this.numerator = p1;
this.denominator = q1;
}
reduce();
}
/**