removed unused import statements

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@763689 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-04-09 15:20:53 +00:00
parent 0cb711643d
commit e94434768e
1 changed files with 2 additions and 4 deletions

View File

@ -23,8 +23,6 @@ import org.apache.commons.math.ode.events.CombinedEventsManager;
import org.apache.commons.math.ode.events.EventException;
import org.apache.commons.math.ode.events.EventHandler;
import org.apache.commons.math.ode.events.EventState;
import org.apache.commons.math.ode.nonstiff.AdamsBashforthIntegrator;
import org.apache.commons.math.ode.nonstiff.AdamsMoultonIntegrator;
import org.apache.commons.math.ode.nonstiff.DormandPrince853Integrator;
import org.apache.commons.math.ode.sampling.FixedStepHandler;
import org.apache.commons.math.ode.sampling.MultistepStepInterpolator;
@ -36,8 +34,8 @@ import org.apache.commons.math.ode.sampling.StepNormalizer;
* This class is the base class for multistep integrators for Ordinary
* Differential Equations.
*
* @see AdamsBashforthIntegrator
* @see AdamsMoultonIntegrator
* @see org.apache.commons.math.ode.nonstiff.AdamsBashforthIntegrator
* @see org.apache.commons.math.ode.nonstiff.AdamsMoultonIntegrator
* @version $Revision$ $Date$
* @since 2.0
*/