fixed a missing initialization

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@567420 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2007-08-19 16:15:02 +00:00
parent 9c2dd8a5f7
commit d784ea2eb6
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ public class SimpleEstimationProblem implements EstimationProblem {
* Build an empty instance without parameters nor measurements. * Build an empty instance without parameters nor measurements.
*/ */
public SimpleEstimationProblem() { public SimpleEstimationProblem() {
parameters = new ArrayList(); parameters = new ArrayList();
measurements = new ArrayList();
} }
public EstimatedParameter[] getAllParameters() { public EstimatedParameter[] getAllParameters() {