From 66e50e085329009d17ca1602dd0b5e279d9e7682 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 --- 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 f2cf4c33700..c45d4d69140 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.3 (Apple Git-146)