]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1160394 - Products.get_products is missing from PUBLIC_METHODS (for backwards...
authorMatt Tyson <mtyson@redhat.com>
Wed, 16 Dec 2015 00:33:10 +0000 (00:33 +0000)
committerDavid Lawrence <dkl@mozilla.com>
Wed, 16 Dec 2015 00:33:10 +0000 (00:33 +0000)
r=dkl,a=dkl

Bugzilla/API/1_0/Resource/Product.pm
Bugzilla/WebService/Product.pm

index dcd4b9a684069383e3931be6eac976d6568df153..6a5168608fb796fe19819ac6b73e8407cc207886 100644 (file)
@@ -109,8 +109,6 @@ sub REST_RESOURCES {
 # Methods  #
 ############
 
-BEGIN { *get_products = \&get }
-
 # Get the ids of the products the user can search
 sub get_selectable_products {
     Bugzilla->switch_to_shadow_db();
@@ -511,8 +509,6 @@ Returns a list of information about the products passed to it.
 
 B<Note>: You must at least specify one of C<ids> or C<names>.
 
-B<Note>: Can also be called as "get_products" for compatibilty with Bugzilla 3.0 API.
-
 =item B<REST>
 
 To return information about a specific groups of products such as
@@ -1008,6 +1004,4 @@ You must define a default milestone.
 
 =item REST_RESOURCES
 
-=item get_products
-
 =back
index 7a3b0fa3e3381aed09be80e0d472facf3cfb2f52..75ec42c057824acb5f965f8aac2b05bb2ad9803b 100644 (file)
@@ -55,8 +55,6 @@ use constant FIELD_MAP => {
 # Add aliases here for method name compatibility #
 ##################################################
 
-BEGIN { *get_products = \&get }
-
 # Get the ids of the products the user can search
 sub get_selectable_products {
     Bugzilla->switch_to_shadow_db();
@@ -498,8 +496,6 @@ Returns a list of information about the products passed to it.
 
 B<Note>: You must at least specify one of C<ids> or C<names>.
 
-B<Note>: Can also be called as "get_products" for compatibilty with Bugzilla 3.0 API.
-
 =item B<REST>
 
 To return information about a specific groups of products such as
@@ -992,11 +988,3 @@ You must define a default milestone.
 =back
 
 =back
-
-=head1 B<Methods in need of POD>
-
-=over
-
-=item get_products
-
-=back