Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2014-03-27 06:42:03 +0000
committerslewis2014-03-27 06:42:03 +0000
commit17d2e4d2aa9e137414c9ea459dfb20d5c6158cd8 (patch)
treec6eaa08b951865d634fc0be852d048b3c8d75825 /framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core
parent75e4edba4f357e8e202787a2d2973912709b54fa (diff)
downloadorg.eclipse.ecf-17d2e4d2aa9e137414c9ea459dfb20d5c6158cd8.tar.gz
org.eclipse.ecf-17d2e4d2aa9e137414c9ea459dfb20d5c6158cd8.tar.xz
org.eclipse.ecf-17d2e4d2aa9e137414c9ea459dfb20d5c6158cd8.zip
Fixes to trivial provider
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core')
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java
index ca82a0987..5dd20535e 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ExtensionRegistryRunnable.java
@@ -16,7 +16,7 @@ import org.osgi.util.tracker.ServiceTracker;
/**
* @since 3.3
*/
-public abstract class ExtensionRegistryRunnable implements ISafeRunnable {
+public class ExtensionRegistryRunnable implements ISafeRunnable {
private BundleContext context;
@@ -28,8 +28,10 @@ public abstract class ExtensionRegistryRunnable implements ISafeRunnable {
// by default do nothing
}
- protected abstract void runWithRegistry(IExtensionRegistry registry)
- throws Exception;
+ protected void runWithRegistry(IExtensionRegistry registry)
+ throws Exception {
+ // by default do nothing
+ }
protected void logWarning(Throwable exception) {
Activator a = Activator.getDefault();

Back to the top