From 4a542c869b30787454b40d397a57eecf440b6155 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Thu, 15 Aug 2024 10:17:10 +0000 Subject: [PATCH] Bug 37649: Remove unneccessary JSON import This patch removes an unncessary import of the JSON module in the KBART import background job Test plan: 1) Look at the patch diff and note the removal of the import 2) Run t/db_dependent/Koha/BackgroundJob/ImportKBARTFile.t --- Koha/BackgroundJob/ImportKBARTFile.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/Koha/BackgroundJob/ImportKBARTFile.pm b/Koha/BackgroundJob/ImportKBARTFile.pm index 890a3c926a8..ca76d1a8e3a 100644 --- a/Koha/BackgroundJob/ImportKBARTFile.pm +++ b/Koha/BackgroundJob/ImportKBARTFile.pm @@ -16,7 +16,6 @@ package Koha::BackgroundJob::ImportKBARTFile; # along with Koha; if not, see . use Modern::Perl; -use JSON qw( decode_json encode_json ); use Try::Tiny qw( catch try ); use MIME::Base64 qw( decode_base64 ); use POSIX qw( floor ); -- 2.39.3 (Apple Git-146)