Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2021-01-10 17:56:55 +0000
committerAlexander Kurtakov2021-01-10 19:21:27 +0000
commitdf7785fceba157a650d93a74ef4dcc07e392254a (patch)
tree8f9f53f40054835322117c8a81612c221624f62a
parenta1cab3bfbf1adc9604a04579c6acccb12be3ad26 (diff)
downloadeclipse.platform.runtime-df7785fceba157a650d93a74ef4dcc07e392254a.tar.gz
eclipse.platform.runtime-df7785fceba157a650d93a74ef4dcc07e392254a.tar.xz
eclipse.platform.runtime-df7785fceba157a650d93a74ef4dcc07e392254a.zip
No need to implement IProgressMonitorWithBlocking
It has been merged in IProgressMonitor. Change-Id: Ic49875e90ed7d82c4120a83b3e3de9b34b8a27f7 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/TestBlockingMonitor.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/TestBlockingMonitor.java b/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/TestBlockingMonitor.java
index aa95ca653..dfc393897 100644
--- a/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/TestBlockingMonitor.java
+++ b/tests/org.eclipse.core.tests.runtime/src/org/eclipse/core/tests/runtime/jobs/TestBlockingMonitor.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2015 IBM Corporation and others.
+ * Copyright (c) 2004, 2021 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -13,7 +13,7 @@
*******************************************************************************/
package org.eclipse.core.tests.runtime.jobs;
-import org.eclipse.core.runtime.IProgressMonitorWithBlocking;
+import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.tests.harness.TestBarrier;
import org.eclipse.core.tests.harness.TestProgressMonitor;
@@ -22,7 +22,7 @@ import org.eclipse.core.tests.harness.TestProgressMonitor;
* A test progress monitor that sends a signal to a barrier object when it
* becomes blocked.
*/
-class TestBlockingMonitor extends TestProgressMonitor implements IProgressMonitorWithBlocking {
+class TestBlockingMonitor extends TestProgressMonitor implements IProgressMonitor {
private TestBarrier barrier;
private boolean cancelled;

Back to the top