Bug 23103: (QA follow-up) Return undef implicitly
[koha-equinox.git] / C4 / Circulation.pm
index 773f570..84349d9 100644 (file)
@@ -2421,7 +2421,7 @@ sub _FixAccountForLostAndReturned {
 
     return unless $accountline->borrowernumber;
     my $patron = Koha::Patrons->find( $accountline->borrowernumber );
-    return undef unless $patron; # Patron has been deleted, nobody to credit the return to
+    return unless $patron; # Patron has been deleted, nobody to credit the return to
 
     my $account = $patron->account;