From 56c892020cfc05c5e4176c7a3a69f79a1dc3bb40 Mon Sep 17 00:00:00 2001 From: Stoiko Ivanov Date: Tue, 23 May 2023 18:01:05 +0200 Subject: [PATCH] drop deprecated function wrappers the callers (in our codebase) were adapted with pmg-api commit 2e08e3c97b6410ac0b6d985c99ba7ba3722d21f1 so we can safely drop them now Signed-off-by: Stoiko Ivanov Signed-off-by: Thomas Lamprecht --- LibArchive/LibArchive.xs | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/LibArchive/LibArchive.xs b/LibArchive/LibArchive.xs index 1032502..cb4141f 100644 --- a/LibArchive/LibArchive.xs +++ b/LibArchive/LibArchive.xs @@ -74,16 +74,6 @@ int archive_read_free(arg0) struct archive * arg0 -# archive_read_finish is deprecated in favor of archive_read_free -# can be dropped after changing all call-sites -int -archive_read_finish(arg0) - struct archive * arg0 - CODE: - RETVAL = archive_read_free(arg0); - OUTPUT: - RETVAL - struct archive * archive_read_new() @@ -119,16 +109,6 @@ int archive_read_support_filter_all(arg0) struct archive * arg0 -# archive_read_finish is deprecated in favor of archive_read_support_filter_all -# can be dropped after changing all call-sites -int -archive_read_support_compression_all(arg0) - struct archive * arg0 - CODE: - RETVAL = archive_read_support_filter_all(arg0); - OUTPUT: - RETVAL - int archive_read_support_filter_bzip2(arg0) struct archive * arg0