From b9bb0f42712f601c11fcd3d312910da0fd72b6ed Mon Sep 17 00:00:00 2001 From: Pierre-Luc Beaudoin Date: Wed, 27 May 2009 12:09:52 -0400 Subject: Don't need to check twice if location has latitude There is no need to check for lon as lat, lon as always set togeter (they are meaningless alone). --- libempathy/empathy-tp-contact-factory.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'libempathy') diff --git a/libempathy/empathy-tp-contact-factory.c b/libempathy/empathy-tp-contact-factory.c index cd7824a7a..cfdbf8c94 100644 --- a/libempathy/empathy-tp-contact-factory.c +++ b/libempathy/empathy-tp-contact-factory.c @@ -511,7 +511,6 @@ tp_contact_factory_geocode (EmpathyContact *contact) geocode_cb, contact); g_hash_table_unref (address); - return; #endif } @@ -522,7 +521,6 @@ tp_contact_factory_update_location (EmpathyTpContactFactory *tp_factory, { EmpathyContact *contact; GHashTable *new_location; - GValue *value; contact = tp_contact_factory_find_by_handle (tp_factory, handle); @@ -536,10 +534,7 @@ tp_contact_factory_update_location (EmpathyTpContactFactory *tp_factory, empathy_contact_set_location (contact, new_location); g_hash_table_unref (new_location); - value = g_hash_table_lookup (location, EMPATHY_LOCATION_LAT); - if (value == NULL) { - tp_contact_factory_geocode (contact); - } + tp_contact_factory_geocode (contact); } static void -- cgit v1.2.3