summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-05-22 08:23:37 +0200
committerByron Jones <bjones@mozilla.com>2012-05-22 08:23:37 +0200
commit121791e809094cd5eb89fa435e6a374473038630 (patch)
treec871ee33a49ca350540a7398828a4dd9d7fdc672 /Bugzilla/WebService
parent61f963cb55538fb216c0a37c6039476a36301f14 (diff)
downloadbugzilla-121791e809094cd5eb89fa435e6a374473038630.tar.gz
bugzilla-121791e809094cd5eb89fa435e6a374473038630.tar.xz
Bug 756005: fix arecibo breaking xmlrpc errors
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r--Bugzilla/WebService/Server.pm1
1 files changed, 0 insertions, 1 deletions
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});