From: Bill Erickson Date: Thu, 6 Jun 2013 15:13:35 +0000 (-0400) Subject: LP#1179660: remove call to undefined initialize func X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1e3a50f758103b726bfede5f98e65e3b6799e831;p=evergreen%2Fpines.git LP#1179660: remove call to undefined initialize func Remove call to nonexistant function Search::Z3950->initialize. Prior to now, this would have quietly failed, but with AUTOLOAD to be removed from OpenSRF, it would fail with full shock and awe. Signed-off-by: Bill Erickson Signed-off-by: Galen Charlton Conflicts: Open-ILS/src/perlmods/lib/OpenILS/Application/Search.pm --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search.pm index df4841c887..9ebb6da3d4 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Search.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Search.pm @@ -28,7 +28,6 @@ use Text::Aspell; # Houses generic search utilites sub initialize { - OpenILS::Application::Search::Z3950->initialize(); OpenILS::Application::Search::Zips->initialize(); OpenILS::Application::Search::Biblio->initialize(); }