[empathy] Don't need to check twice if location has latitude



commit b9bb0f42712f601c11fcd3d312910da0fd72b6ed
Author: Pierre-Luc Beaudoin <pierre-luc pierlux com>
Date:   Wed May 27 12:09:52 2009 -0400

    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 files changed, 1 insertions(+), 6 deletions(-)

diff --git a/libempathy/empathy-tp-contact-factory.c b/libempathy/empathy-tp-contact-factory.c
index cd7824a..cfdbf8c 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



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]