From 8f6fd887f540da97944a6a97e8fab46449999fb4 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sun, 15 Mar 2009 21:03:39 +0000 Subject: [PATCH] removed a spurious print statement git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@754750 13f79535-47bb-0310-9956-ffa450edef68 --- .../math/ode/nonstiff/StepInterpolatorAbstractTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java b/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java index 8a61c0191..e9b1f3a5c 100644 --- a/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java +++ b/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java @@ -77,9 +77,6 @@ public class StepInterpolatorAbstractTest extends TestCase { 32 * (yP3h[i] - yM3h[i]) + -168 * (yP2h[i] - yM2h[i]) + 672 * (yP1h[i] - yM1h[i])) / (840 * h); - if (Math.abs(approYDot - yDot[i]) >= threshold) { - System.out.println("gotcha!"); - } assertEquals(approYDot, yDot[i], threshold); }