diff options
author | Emil Ivov <emcho@jitsi.org> | 2007-06-04 14:03:16 +0000 |
---|---|---|
committer | Emil Ivov <emcho@jitsi.org> | 2007-06-04 14:03:16 +0000 |
commit | 4a4b212e89866472712202c44c8472975b019d4b (patch) | |
tree | 1c173b2feb7249b995cee5b4c623312e6d0bebc6 /src/net/java/sip/communicator/impl/systray | |
parent | 53720bf4231523344b2b1ddcbc52371be907a800 (diff) | |
download | jitsi-4a4b212e89866472712202c44c8472975b019d4b.zip jitsi-4a4b212e89866472712202c44c8472975b019d4b.tar.gz jitsi-4a4b212e89866472712202c44c8472975b019d4b.tar.bz2 |
Code review for the RSS provider implemnetation. Fixing numerous javadoc conflicts.
Diffstat (limited to 'src/net/java/sip/communicator/impl/systray')
-rw-r--r-- | src/net/java/sip/communicator/impl/systray/SystrayActivator.java | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/net/java/sip/communicator/impl/systray/SystrayActivator.java b/src/net/java/sip/communicator/impl/systray/SystrayActivator.java index 8769302..366822c 100644 --- a/src/net/java/sip/communicator/impl/systray/SystrayActivator.java +++ b/src/net/java/sip/communicator/impl/systray/SystrayActivator.java @@ -20,19 +20,19 @@ import org.osgi.framework.*; */ public class SystrayActivator implements BundleActivator -{ +{ /** * A currently valid bundle context. */ public static BundleContext bundleContext; public static UIService uiService; - + private static ConfigurationService configService; - + private static Logger logger = Logger.getLogger( SystrayActivator.class.getName()); - + /** * Called when this bundle is started. * @@ -47,8 +47,8 @@ public class SystrayActivator .getServiceReference(UIService.class.getName()); uiService = (UIService) bundleContext.getService(uiServiceRef); - - SystrayServiceJdicImpl systray = new SystrayServiceJdicImpl(uiService); + + SystrayServiceJdicImpl systray = new SystrayServiceJdicImpl(uiService); } /** @@ -63,7 +63,7 @@ public class SystrayActivator */ public void stop(BundleContext bc) throws Exception { } - + /** * Returns the <tt>ConfigurationService</tt> obtained from the bundle @@ -71,7 +71,7 @@ public class SystrayActivator * @return the <tt>ConfigurationService</tt> obtained from the bundle * context */ - public static ConfigurationService getConfigurationService() + public static ConfigurationService getConfigurationService() { if(configService == null) { ServiceReference configReference = bundleContext |