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=f32708477e76c5170a89c14b9cf131cca062ea51;p=Evergreen.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 Signed-off-by: Galen Charlton --- 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(); }