From 121791e809094cd5eb89fa435e6a374473038630 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 22 May 2012 14:23:37 +0800 Subject: Bug 756005: fix arecibo breaking xmlrpc errors --- Bugzilla/WebService/Server.pm | 1 - 1 file changed, 1 deletion(-) (limited to 'Bugzilla/WebService/Server.pm') diff --git a/Bugzilla/WebService/Server.pm b/Bugzilla/WebService/Server.pm index fdfff0057..4e0315219 100644 --- a/Bugzilla/WebService/Server.pm +++ b/Bugzilla/WebService/Server.pm @@ -26,7 +26,6 @@ use Scalar::Util qw(blessed); sub handle_login { my ($self, $class, $method, $full_method) = @_; eval "require $class"; - warn($@) if $@; ThrowCodeError('unknown_method', {method => $full_method}) if $@; return if ($class->login_exempt($method) and !defined Bugzilla->input_params->{Bugzilla_login}); -- cgit v1.2.3-24-g4f1b