From 00ca7dd316d62899fc33299ae853610da0a3e72e Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 22 Sep 2021 16:01:35 -0300 Subject: [PATCH] Bug 29083: (QA follow-up) Remove unused param Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize Signed-off-by: Nick Clemens --- Koha/Patron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 4345df80a6..ec64d00370 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -1038,7 +1038,7 @@ Returns the article requests associated with this patron that are completed =cut sub article_requests_finished { - my ( $self, $borrower ) = @_; + my ( $self ) = @_; return $self->article_requests->filter_by_finished; } -- 2.32.0