aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2014-02-04 00:15:57 +0800
committerMatthew Barnes <mbarnes@redhat.com>2014-02-04 00:15:57 +0800
commite81fab3f805f8a31f452259d10ec65b57023c73e (patch)
treee3af07da980f0c8e3d481d1d7b9f14bd7c1de3b0
parentfa75665c3bf9dceaeec233ccf3702cdc167de3c3 (diff)
downloadgsoc2013-evolution-e81fab3f805f8a31f452259d10ec65b57023c73e.tar
gsoc2013-evolution-e81fab3f805f8a31f452259d10ec65b57023c73e.tar.gz
gsoc2013-evolution-e81fab3f805f8a31f452259d10ec65b57023c73e.tar.bz2
gsoc2013-evolution-e81fab3f805f8a31f452259d10ec65b57023c73e.tar.lz
gsoc2013-evolution-e81fab3f805f8a31f452259d10ec65b57023c73e.tar.xz
gsoc2013-evolution-e81fab3f805f8a31f452259d10ec65b57023c73e.tar.zst
gsoc2013-evolution-e81fab3f805f8a31f452259d10ec65b57023c73e.zip
Remove unused mail_folder_cache_list_stores().
-rw-r--r--libemail-engine/mail-folder-cache.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/libemail-engine/mail-folder-cache.c b/libemail-engine/mail-folder-cache.c
index ea285b5ebc..c6bcb14ca7 100644
--- a/libemail-engine/mail-folder-cache.c
+++ b/libemail-engine/mail-folder-cache.c
@@ -550,24 +550,6 @@ mail_folder_cache_ref_store_info (MailFolderCache *cache,
return store_info;
}
-static GList *
-mail_folder_cache_list_stores (MailFolderCache *cache)
-{
- GHashTable *store_info_ht;
- GList *list;
-
- g_mutex_lock (&cache->priv->store_info_ht_lock);
-
- store_info_ht = cache->priv->store_info_ht;
-
- list = g_hash_table_get_keys (store_info_ht);
- g_list_foreach (list, (GFunc) g_object_ref, NULL);
-
- g_mutex_unlock (&cache->priv->store_info_ht_lock);
-
- return list;
-}
-
static StoreInfo *
mail_folder_cache_steal_store_info (MailFolderCache *cache,
CamelStore *store)