From e050c6162da6376b044486bc23309cc376d24734 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Joonas=20Kylm=C3=A4l=C3=A4?= Date: Mon, 29 Mar 2021 13:47:17 +0300 Subject: [PATCH] Bug 28013: (QA follow-up) Remove unused variable MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Joonas Kylmälä Signed-off-by: Jonathan Druart (cherry picked from commit 25d60246558f9e22015e350125627bbd2b96fe89) Signed-off-by: Fridolin Somers (cherry picked from commit d581ecf3a7a4be80b9477b7d840365d3aa454d96) Signed-off-by: Andrew Fuerste-Henry --- C4/Circulation.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 06f4b252b2..9193168de1 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2837,7 +2837,6 @@ sub CanBookBeRenewed { # can be filled with available items. We can get the union of the sets simply # by pushing all the elements onto an array and removing the duplicates. my @reservable; - my %patrons; ITEM: while ( my $item = $items->next ) { next if IsItemOnHoldAndFound( $item->itemnumber ); while ( my $patron = $patrons->next ) { -- 2.39.5