Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Schindl2016-02-15 12:46:38 +0000
committerTom Schindl2016-02-15 12:46:38 +0000
commit07df4097af215fd8d81ccd364190479e46b8c7de (patch)
treea8104695e3a0c8a315d30dd0f2ebb075f9729b06
parentf73e5cedbeb1b711ec3cc0fa2a036f5db987f3c0 (diff)
downloadorg.eclipse.rap.incubator.e4-07df4097af215fd8d81ccd364190479e46b8c7de.tar.gz
org.eclipse.rap.incubator.e4-07df4097af215fd8d81ccd364190479e46b8c7de.tar.xz
org.eclipse.rap.incubator.e4-07df4097af215fd8d81ccd364190479e46b8c7de.zip
Fix compile error because of removed DIActivator
Instead of use the DIActivator we now use our own Activator
-rw-r--r--bundles/org.eclipse.rap.e4/src/org/eclipse/rap/e4/internal/RAPEventObjectSupplier.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.rap.e4/src/org/eclipse/rap/e4/internal/RAPEventObjectSupplier.java b/bundles/org.eclipse.rap.e4/src/org/eclipse/rap/e4/internal/RAPEventObjectSupplier.java
index 25cfcce..3aca70a 100644
--- a/bundles/org.eclipse.rap.e4/src/org/eclipse/rap/e4/internal/RAPEventObjectSupplier.java
+++ b/bundles/org.eclipse.rap.e4/src/org/eclipse/rap/e4/internal/RAPEventObjectSupplier.java
@@ -40,7 +40,7 @@ public class RAPEventObjectSupplier extends ExtendedObjectSupplier {
// the proper method to start EventAdmin is added.
static {
if (getEventAdmin() == null) {
- Bundle[] bundles = DIEActivator.getDefault().getBundleContext().getBundles();
+ Bundle[] bundles = Activator.getDefault().getBundleContext().getBundles();
for (Bundle bundle : bundles) {
if (!"org.eclipse.equinox.event".equals(bundle.getSymbolicName())) //$NON-NLS-1$
continue;
@@ -129,7 +129,7 @@ public class RAPEventObjectSupplier extends ExtendedObjectSupplier {
}
private Map<Subscriber, ServiceRegistration> registrations = new HashMap<Subscriber, ServiceRegistration>();
-
+
@Inject
@Named(E4Application.INSTANCEID)
protected String instanceId;

Back to the top