Removed "@Override"

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1154670 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-08-07 08:18:02 +00:00
parent 334c01e6eb
commit d33f6b968c
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public final class RegulaFalsiSolverTest extends BaseSecantSolverAbstractTest {
@Test
public void testIssue631() {
final UnivariateRealFunction f = new UnivariateRealFunction() {
@Override
/** {@inheritDoc} */
public double value(double x) {
return Math.exp(x) - Math.pow(Math.PI, 3.0);
}