diff options
author | Vincent Lucas <chenzo@jitsi.org> | 2012-09-25 14:11:58 +0000 |
---|---|---|
committer | Vincent Lucas <chenzo@jitsi.org> | 2012-09-25 14:11:58 +0000 |
commit | b7acf89cd9da40c9c78f4564c1cd4c37304829ae (patch) | |
tree | 63d36c5cce2ac2e8933967e67c4647b8d8dd40c7 /src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsActivator.java | |
parent | 09cd4c6414659d8488c94f89dd4347a0c9670e53 (diff) | |
download | jitsi-b7acf89cd9da40c9c78f4564c1cd4c37304829ae.zip jitsi-b7acf89cd9da40c9c78f4564c1cd4c37304829ae.tar.gz jitsi-b7acf89cd9da40c9c78f4564c1cd4c37304829ae.tar.bz2 |
Updates the PhoneNumberI18nServiceImpl, in order to remove the dependency to the libphonenumber.
Diffstat (limited to 'src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsActivator.java')
-rw-r--r-- | src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsActivator.java | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsActivator.java b/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsActivator.java index 45afa50..e061cba 100644 --- a/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsActivator.java +++ b/src/net/java/sip/communicator/impl/googlecontacts/GoogleContactsActivator.java @@ -60,13 +60,6 @@ public class GoogleContactsActivator implements BundleActivator private static ResourceManagementService resourceService; /** - * The cached reference to the <tt>PhoneNumberI18nService</tt> instance used - * by the functionality of the Google Contacts plug-in and fetched from its - * <tt>BundleContext</tt>. - */ - private static PhoneNumberI18nService phoneNumberI18nService; - - /** * Google contacts service. */ private static GoogleContactsServiceImpl googleContactsService; @@ -78,25 +71,6 @@ public class GoogleContactsActivator implements BundleActivator = new HashMap<GoogleContactsSourceService, ServiceRegistration>(); /** - * Gets the <tt>PhoneNumberI18nService</tt> to be used by the functionality - * of the addrbook plug-in. - * - * @return the <tt>PhoneNumberI18nService</tt> to be used by the - * functionality of the addrbook plug-in - */ - public static PhoneNumberI18nService getPhoneNumberI18nService() - { - if (phoneNumberI18nService == null) - { - phoneNumberI18nService - = ServiceUtils.getService( - bundleContext, - PhoneNumberI18nService.class); - } - return phoneNumberI18nService; - } - - /** * Returns a reference to a ConfigurationService implementation currently * registered in the bundle context or null if no such implementation was * found. |