Initialize the bundleContext before starting growl (was causing an exception when trying to access resources string at startup)

cusax-fix
Romain Kuntz 17 years ago
parent a23a93c7f8
commit 2cca352d14

@ -53,12 +53,12 @@ public void start(BundleContext bc) throws Exception
logger.info("Growl Notification Plugin cannot be started " +
"on JDK version " + version);
} else {
bundleContext = bc;
/* Create and start the Growl Notification service. */
new GrowlNotificationServiceImpl().start(bc);
logger.info("Growl Notification Plugin ...[Started]");
}
bundleContext = bc;
}
public void stop(BundleContext bundleContext) throws Exception

Loading…
Cancel
Save