From 189318684b6ccfdedc8e106e287e99a2d18f8573 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Fri, 30 Aug 2013 19:24:04 -0400 Subject: [PATCH] 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 --- Open-ILS/src/perlmods/lib/OpenILS/Utils/Normalize.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.11.0