From ba308272fc5945eb14b5d0f632aa05e2f1c4a02d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Cohen=20Arazi?= Date: Tue, 18 Nov 2025 11:24:46 -0300 Subject: [PATCH] Bug 41262: Remove duplicate `logaction` import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch removes a trivial duplicate import. To test: 1. Apply the patch 2. Run: k$ prove t/db_dependent/Koha/Patron.t => SUCCESS: Tests don't break 3. Sign off :-D Signed-off-by: Tomás Cohen Arazi --- Koha/Patron.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 162ea03630..b0ca2322c7 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -25,7 +25,6 @@ use JSON qw( to_json ); use Unicode::Normalize qw( NFKD ); use Try::Tiny; use DateTime (); -use C4::Log qw( logaction ); use C4::Auth qw( checkpw_hash ); use C4::Context; -- 2.50.1 (Apple Git-155)