Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Kaegi2009-05-19 22:30:57 +0000
committerSimon Kaegi2009-05-19 22:30:57 +0000
commitacb369f7e8bf8030aca10f6be1bbb1ed0cd68d35 (patch)
tree080abe21df84f27325dfa849c6bd8fd3d87cda74 /bundles
parent6102c093a01c624f3eb18faee53f44a4d85161be (diff)
downloadrt.equinox.bundles-acb369f7e8bf8030aca10f6be1bbb1ed0cd68d35.tar.gz
rt.equinox.bundles-acb369f7e8bf8030aca10f6be1bbb1ed0cd68d35.tar.xz
rt.equinox.bundles-acb369f7e8bf8030aca10f6be1bbb1ed0cd68d35.zip
Bug 276927 [log] does not implement mapping of eventsv20090519
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/internal/Activator.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/internal/Activator.java b/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/internal/Activator.java
index ad604b3df..afe35f1c2 100644
--- a/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/internal/Activator.java
+++ b/bundles/org.eclipse.equinox.log/src/org/eclipse/equinox/log/internal/Activator.java
@@ -22,10 +22,11 @@ public class Activator implements BundleActivator, BundleListener, FrameworkList
private ServiceRegistration logReaderServiceRegistration;
private ServiceRegistration logServiceRegistration;
private EventAdminAdapter eventAdminAdapter;
- private final ExtendedLogReaderServiceFactory logReaderServiceFactory = new ExtendedLogReaderServiceFactory();
+ private volatile ExtendedLogReaderServiceFactory logReaderServiceFactory;
private ExtendedLogServiceFactory logServiceFactory;
public void start(BundleContext context) throws Exception {
+ logReaderServiceFactory = new ExtendedLogReaderServiceFactory();
context.addBundleListener(this);
context.addServiceListener(this);
context.addFrameworkListener(this);

Back to the top