Fixed an awkward statement that triggered a false positive warning

JIRA: MATH-467

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1056035 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-01-06 19:43:30 +00:00
parent bef6c18699
commit 7578f0f6a0
2 changed files with 3 additions and 2 deletions

View File

@ -177,8 +177,6 @@ public class HarmonicCoefficientsGuesser {
observations[i + 1] = mI;
if (i-- != 0) {
mI = observations[i];
} else {
mI = null;
}
}
observations[i + 1] = curr;

View File

@ -145,6 +145,9 @@ The <action> type attribute can be add,update,fix,remove.
</action>
</release>
<release version="2.2" date="TBD" description="TBD">
<action dev="luc" type="fix" issue="MATH-467">
Fixed an awkward statement that triggered a false positive warning.
</action>
<action dev="psteitz" type="update" issue="MATH-364" due-to="Christian Winter">
Added complementary error function, erfc.
</action>