removed unused function

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@797789 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-07-25 16:18:17 +00:00
parent cc245b6568
commit 1a7da0d08a
1 changed files with 0 additions and 12 deletions

View File

@ -85,18 +85,6 @@ public abstract class AbstractUnivariateRealOptimizer
return functionValue;
}
/**
* Convenience function for implementations.
*
* @param result the result to set
* @param iterationCount the iteration count to set
*/
protected final void setResult(final double result, final int iterationCount) {
this.result = result;
this.iterationCount = iterationCount;
this.resultComputed = true;
}
/**
* Convenience function for implementations.
*