From 774da25fa897503c20d761b9ff35331da61c180f Mon Sep 17 00:00:00 2001 From: David Zeuthen Date: Sat, 3 Nov 2007 15:24:36 -0400 Subject: [PATCH] remove dead code --- polkit/polkit-action.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/polkit/polkit-action.c b/polkit/polkit-action.c index 1c0444d..fd62b20 100644 --- a/polkit/polkit-action.c +++ b/polkit/polkit-action.c @@ -59,7 +59,6 @@ struct _PolKitAction { int refcount; char *id; - GHashTable *params; }; /** @@ -75,10 +74,6 @@ polkit_action_new (void) PolKitAction *action; action = g_new0 (PolKitAction, 1); action->refcount = 1; - action->params = g_hash_table_new_full (g_str_hash, - g_str_equal, - g_free, - g_free); return action; } @@ -114,7 +109,6 @@ polkit_action_unref (PolKitAction *action) if (action->refcount > 0) return; g_free (action->id); - g_hash_table_destroy (action->params); g_free (action); } -- 2.7.4