From 1b38fc75642a02dfbb4db92e066a4120917c5351 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Joonas=20Kylm=C3=A4l=C3=A4?= <joonas.kylmala@helsinki.fi>
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=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Joonas Kylmälä <joonas.kylmala@helsinki.fi>
---
 C4/Circulation.pm | 1 -
 1 file changed, 1 deletion(-)

diff --git a/C4/Circulation.pm b/C4/Circulation.pm
index 287b0a5b78..0c9c271854 100644
--- a/C4/Circulation.pm
+++ b/C4/Circulation.pm
@@ -2913,7 +2913,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.11.0