@@ -, +, @@ addition --- Koha/Patron.pm | 14 -------------- 1 file changed, 14 deletions(-) --- a/Koha/Patron.pm +++ a/Koha/Patron.pm @@ -93,20 +93,6 @@ sub delete { return $deleted; } -=head3 guarantor - -Returns a Koha::Patron object for this patron's guarantor - -=cut - -sub guarantor { - my ( $self ) = @_; - - return unless $self->guarantorid(); - - return Koha::Patrons->find( $self->guarantorid() ); -} - sub image { my ( $self ) = @_; --