From 3c94b26c662c76792c36b1b8dd5a95411bf05d03 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Thu, 15 Aug 2024 09:37:10 +0000 Subject: [PATCH] Bug 37647: Remove Text::CSV_XS import There is an unnecessary import that has been left over from when KBART file processing logic was being handled directly in the API controller. This patch removes that import as it is no longer needed Test plan: 1) Look at the patch diff and confirm that the import for Text::CSV_XS has been removed Signed-off-by: Jake Deery Signed-off-by: Marcel de Rooy Signed-off-by: Katrin Fischer --- Koha/REST/V1/ERM/EHoldings/Titles/Local.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/Koha/REST/V1/ERM/EHoldings/Titles/Local.pm b/Koha/REST/V1/ERM/EHoldings/Titles/Local.pm index f2cf4c3370..c45d4d6914 100644 --- a/Koha/REST/V1/ERM/EHoldings/Titles/Local.pm +++ b/Koha/REST/V1/ERM/EHoldings/Titles/Local.pm @@ -27,7 +27,6 @@ use Scalar::Util qw( blessed ); use Try::Tiny qw( catch try ); use MIME::Base64 qw( decode_base64 encode_base64 ); use POSIX qw( floor ); -use Text::CSV_XS; =head1 API -- 2.39.5