From 9a49aa7db7cccf09d13aee88b05fba82467e5936 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 f113f6c29b..f3b7d22afa 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -1018,7 +1018,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.33.0