Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2012-03-28 11:41:32 +0000
committerDani Megert2012-03-28 11:41:32 +0000
commit088a43e0268967828f8a58daaebc7c6a4118e3f5 (patch)
tree539f790f21493c72edaa824e984d25a57564a365
parent5915de3bdf921e09f7ef075a384585041068bf22 (diff)
downloadeclipse.jdt.debug-088a43e0268967828f8a58daaebc7c6a4118e3f5.tar.gz
eclipse.jdt.debug-088a43e0268967828f8a58daaebc7c6a4118e3f5.tar.xz
eclipse.jdt.debug-088a43e0268967828f8a58daaebc7c6a4118e3f5.zip
-rw-r--r--org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/performance/BreakpointManagerPerfTests.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/performance/BreakpointManagerPerfTests.java b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/performance/BreakpointManagerPerfTests.java
index 0626527a9..b08e4a2d2 100644
--- a/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/performance/BreakpointManagerPerfTests.java
+++ b/org.eclipse.jdt.debug.tests/tests/org/eclipse/jdt/debug/tests/performance/BreakpointManagerPerfTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011 IBM Corporation and others.
+ * Copyright (c) 2011, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -88,7 +88,7 @@ public class BreakpointManagerPerfTests extends AbstractDebugPerformanceTest {
for(int i = 0; i < 6500; i++) {
try {
startMeasuring();
- mgr.start();
+ mgr.ensureInitialized();
stopMeasuring();
}
finally {
@@ -118,7 +118,7 @@ public class BreakpointManagerPerfTests extends AbstractDebugPerformanceTest {
for(int i = 0; i < 6500; i++) {
try {
startMeasuring();
- mgr.start();
+ mgr.ensureInitialized();
stopMeasuring();
}
finally {
@@ -148,7 +148,7 @@ public class BreakpointManagerPerfTests extends AbstractDebugPerformanceTest {
for(int i = 0; i < 6500; i++) {
try {
startMeasuring();
- mgr.start();
+ mgr.ensureInitialized();
stopMeasuring();
}
finally {

Back to the top