From: Jason Stephenson Date: Fri, 30 Aug 2013 23:24:04 +0000 (-0400) Subject: Silence a deprecation warning import in OpenILS::Utils::Normalize. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=189318684b6ccfdedc8e106e287e99a2d18f8573;p=working%2FEvergreen.git Silence a deprecation warning import in OpenILS::Utils::Normalize. Perl complains that import is deprecated when we "use Exporter 'import'" in OpenILS::Utils::Normalize. We now just "use Exporter" to silence the warning Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Normalize.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Normalize.pm index e147f8ef0c..a5d9020ab2 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Normalize.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Normalize.pm @@ -8,7 +8,7 @@ use MARC::Record; use MARC::File::XML ( BinaryEncoding => 'UTF-8' ); use OpenILS::Application::AppUtils; -use Exporter 'import'; +use Exporter; our @EXPORT_OK = qw( clean_marc naco_normalize search_normalize ); sub naco_normalize {