diff options
author | Nikias Bassen | 2023-04-19 17:52:23 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-04-19 17:52:23 +0200 |
commit | 3fdb11126928717007127688f55a5fffa8a59ac9 (patch) | |
tree | fa49826cb51d7c4376178f1f06cbcef62991763d /src | |
parent | ce9ce43efd707a85cc792ff2cc417603a53d4d1d (diff) | |
download | libplist-3fdb11126928717007127688f55a5fffa8a59ac9.tar.gz libplist-3fdb11126928717007127688f55a5fffa8a59ac9.tar.bz2 |
Remove deprecated plist_dict_insert_item()
Diffstat (limited to 'src')
-rw-r--r-- | src/plist.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plist.c b/src/plist.c index 48b012b..e58e83a 100644 --- a/src/plist.c +++ b/src/plist.c @@ -887,11 +887,6 @@ PLIST_API void plist_dict_set_item(plist_t node, const char* key, plist_t item) } } -PLIST_API void plist_dict_insert_item(plist_t node, const char* key, plist_t item) -{ - plist_dict_set_item(node, key, item); -} - PLIST_API void plist_dict_remove_item(plist_t node, const char* key) { if (node && PLIST_DICT == plist_get_node_type(node)) |