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:
parent
3838e1fceb
commit
f71a6ee1e9
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue