From 3f1ae2270b7e6c95a222c09bbced49402c4637fc Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Tue, 23 Jul 2013 16:26:29 -0400 Subject: [PATCH] Bug 896066 - Allow REST WebService API to for GET /product to allow retrieval of multiple product objects instead of ids --- Bugzilla/WebService/Product.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/Bugzilla/WebService/Product.pm b/Bugzilla/WebService/Product.pm index c028c58453..f5a7f953f6 100644 --- a/Bugzilla/WebService/Product.pm +++ b/Bugzilla/WebService/Product.pm @@ -78,7 +78,6 @@ sub get { my $products = []; if (defined $params->{type}) { my %product_hash; - my $found = 0; foreach my $type (@{ $params->{type} }) { my $result = []; if ($type eq 'accessible') { -- 2.47.3