Skip to content
Snippets Groups Projects
Commit eca37037 authored by Nikolaus Huber's avatar Nikolaus Huber
Browse files

corrected instantiation

git-svn-id: https://se1.informatik.uni-wuerzburg.de/usvn/svn/code/code/DMM/trunk@11950 9e42b895-fcda-4063-8a3b-11be15eb1bbd
parent ed147912
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ public class ObservationRepositoryHandler implements IPerformanceDataRepositoryH
private int iteration = 0;
public ObservationRepositoryHandler() {
modelLoader = new ObservationRepositoryModelLoader();
modelLoader = ObservationRepositoryModelLoader.getInstance();
logger.debug("ObservationRepositoryHandler loaded.");
}
......
......@@ -15,7 +15,7 @@ public class PerformanceDataRepositoryHandler implements IPerformanceDataReposit
private PerformanceDataRepositoryModelLoader modelLoader = null;
public PerformanceDataRepositoryHandler() {
modelLoader = new PerformanceDataRepositoryModelLoader();
modelLoader = PerformanceDataRepositoryModelLoader.getInstance();
logger.debug("PerformanceDataRepositoryHandler instantiated.");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment