From: Chris Sharp Date: Mon, 30 Jan 2023 18:51:51 +0000 (-0500) Subject: Revert "more log warning fixes" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e85356f91d44b97e9a87f081a01833f8ae39788e;p=evergreen%2Fpines.git Revert "more log warning fixes" This reverts commit a6c0358f8a720b79e6810adfec04041585163508. --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm index ef9ff0e872..3c323775ba 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm @@ -2377,7 +2377,7 @@ sub unique_unnested_numbers { return uniq( map( int, - map { $_ && $_ eq 'NULL' ? undef : (split /,/, $_) } + map { $_ eq 'NULL' ? undef : (split /,/, $_) } map { substr($_, 1, -1) } @_ ) );