EClient: Remove unused 'uri' member.
authorMatthew Barnes <mbarnes@redhat.com>
Sat, 26 Jan 2013 21:02:19 +0000 (16:02 -0500)
committerMatthew Barnes <mbarnes@redhat.com>
Sat, 26 Jan 2013 21:02:19 +0000 (16:02 -0500)
libedataserver/e-client.c

index 5b3e8b0..576060f 100644 (file)
@@ -43,7 +43,6 @@ struct _EClientPrivate {
        GRecMutex prop_mutex;
 
        ESource *source;
-       gchar *uri;
        gboolean online;
        gboolean readonly;
        gboolean capabilities_retrieved;
@@ -242,11 +241,6 @@ client_finalize (GObject *object)
                priv->source = NULL;
        }
 
-       if (priv->uri) {
-               g_free (priv->uri);
-               priv->uri = NULL;
-       }
-
        if (priv->capabilities) {
                g_slist_foreach (priv->capabilities, (GFunc) g_free, NULL);
                g_slist_free (priv->capabilities);