fixed an error identified by findbugs

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@795591 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-07-19 18:36:46 +00:00
parent 3838e1fceb
commit f71a6ee1e9
1 changed files with 2 additions and 2 deletions

View File

@ -108,8 +108,8 @@ public abstract class AdaptiveStepsizeIntegrator
this.scalAbsoluteTolerance = 0;
this.scalRelativeTolerance = 0;
this.vecAbsoluteTolerance = vecAbsoluteTolerance;
this.vecRelativeTolerance = vecRelativeTolerance;
this.vecAbsoluteTolerance = vecAbsoluteTolerance.clone();
this.vecRelativeTolerance = vecRelativeTolerance.clone();
resetInternalState();