From daa2d6b1c40354ecce0e48e6c5ee686efe642c4b Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 18 Mar 2018 22:31:10 -0400 Subject: fix all the tests --- Bugzilla/Product.pm | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'Bugzilla/Product.pm') diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm index c4c147a63..3ac1692f0 100644 --- a/Bugzilla/Product.pm +++ b/Bugzilla/Product.pm @@ -64,7 +64,6 @@ use constant VALIDATORS => { description => \&_check_description, version => \&_check_version, defaultmilestone => \&_check_default_milestone, - security_group_id => \&_check_security_group_id, isactive => \&Bugzilla::Object::check_boolean, create_series => \&Bugzilla::Object::check_boolean }; @@ -390,16 +389,6 @@ sub _check_version { return $version; } -sub _check_security_group_id { - my ($invocant, $id) = @_; - - $id = trim($id); - - ThrowUserError('product_must_have_security_group') unless $id; - - return $id; -} - sub _check_default_milestone { my ($invocant, $milestone) = @_; -- cgit v1.2.3-24-g4f1b