From 25d60246558f9e22015e350125627bbd2b96fe89 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 --- C4/Circulation.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index e403c3b012..d3f63475dd 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2914,7 +2914,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.20.1