Skip to content
Snippets Groups Projects
Commit e8767e82 authored by dgelessus's avatar dgelessus
Browse files

Move debug print so it prints immediately after time is measured

parent 7ea65073
No related branches found
No related tags found
Loading
......@@ -205,6 +205,10 @@ public class PersistenceHelper {
long time1 = System.currentTimeMillis();
if (DEBUG) {
System.out.println("new ModelMerge: " + (time1 - time0));
}
Registry registry = RegistryImpl.createStandaloneInstance();
IMerger evbMerger = new EventBMerger();
evbMerger.setRanking(100);
......@@ -219,7 +223,6 @@ public class PersistenceHelper {
long time2 = System.currentTimeMillis();
if (DEBUG) {
System.out.println("new ModelMerge: " + (time1 - time0));
System.out.println("merge.applyChanges: " + (time2 - time1));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment