From 0fee1263513f1c8e120218e60ea7733882cc7267 Mon Sep 17 00:00:00 2001 From: Baptiste Wojtkowski Date: Mon, 16 Sep 2024 15:54:13 +0200 Subject: [PATCH] Bug 37892: (follow-up) Tidyness --- Koha/Patron.pm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index ea64231..241465f 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -541,7 +541,7 @@ Returns true if the patron has a guarantor. sub is_guarantee { my ($self) = @_; - return $self->guarantor_relationships()->count() + return $self->guarantor_relationships()->count(); } @@ -569,7 +569,6 @@ sub guarantee_relationships { ); } - =head3 is_guarantor Returns true if the patron is a guarantor. @@ -578,7 +577,7 @@ Returns true if the patron is a guarantor. sub is_guarantor { my ($self) = @_; - return $self->guarantee_relationships()->count() + return $self->guarantee_relationships()->count(); } -- 2.43.0