From 9edb7a3dfd4b3a7949084c1ea6723d0bdc843d1e 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 Content-Type: text/plain; charset=utf-8 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 --- 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.30.2