From 6b719ecda2072dafeb98a44a6f4eac247748efc0 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 19 Mar 2014 02:32:57 +0100 Subject: deprecated plist_dict_insert_item in favor of plist_dict_set_item --- src/plist.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/plist.c') diff --git a/src/plist.c b/src/plist.c index f33de0a..eeb4ffd 100644 --- a/src/plist.c +++ b/src/plist.c @@ -424,12 +424,7 @@ void plist_dict_set_item(plist_t node, const char* key, plist_t item) void plist_dict_insert_item(plist_t node, const char* key, plist_t item) { - if (node && PLIST_DICT == plist_get_node_type(node)) - { - node_attach(node, plist_new_key(key)); - node_attach(node, item); - } - return; + plist_dict_set_item(node, key, item); } void plist_dict_remove_item(plist_t node, const char* key) -- cgit v1.1-32-gdbae