Author: sebb Date: Sun Mar 14 01:53:46 2010 New Revision: 922720 URL: http://svn.apache.org/viewvc?rev=922720&view=rev Log: Recent fixed JIRAs
Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=922720&r1=922719&r2=922720&view=diff ============================================================================== --- commons/proper/math/trunk/src/site/xdoc/changes.xml (original) +++ commons/proper/math/trunk/src/site/xdoc/changes.xml Sun Mar 14 01:53:46 2010 @@ -39,6 +39,17 @@ The <action> type attribute can be add,u </properties> <body> <release version="2.1" date="TBD" description="TBD"> + <action dev="sebb" type="update" issue="MATH-337"> + Changed equals() methods to use instanceof check rather than catching ClassCastException; + this also allows some null checks to be omitted. + </action> + <action dev="sebb" type="update" issue="MATH-336"> + Removed unnecessary null checks in equals methods. + </action> + <action dev="sebb" type="fix" issue="MATH-335"> + Fraction.hashCode() implementation was not fully consistent with Fraction.equals(). + Changed hashCode() to use fields directly to agree with equals(). + </action> <action dev="psteitz" type="fix" issue="MATH-282"> Resolved multiple problems leading to inaccuracy and/or failure to compute Normal, ChiSquare and Poisson probabilities, Erf and Gamma functions.