diff options
author | justdave%bugzilla.org <> | 2005-08-15 07:34:32 +0200 |
---|---|---|
committer | justdave%bugzilla.org <> | 2005-08-15 07:34:32 +0200 |
commit | 09756eda41e62f1b216c38338c6d0702dccc7502 (patch) | |
tree | d5235e242ea28bc5a5e730210df0631fa4c0a203 | |
parent | 2b5c15916a85aef50814a96c0112d9b2ba910b3e (diff) | |
download | bugzilla-09756eda41e62f1b216c38338c6d0702dccc7502.tar.gz bugzilla-09756eda41e62f1b216c38338c6d0702dccc7502.tar.xz |
Bug 303413: Remove "use Bugzilla" from all of the pm files. All of the cgi files already have it loaded, and it causes circular dependencies.
Patch by Max Kanat-Alexander <mkanat@bugzilla.org>
r=justdave a=justdave
-rwxr-xr-x | Bugzilla/Bug.pm | 1 | ||||
-rw-r--r-- | Bugzilla/BugMail.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Classification.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Component.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Field.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Group.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Milestone.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Product.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Series.pm | 1 | ||||
-rw-r--r-- | Bugzilla/Version.pm | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index ca5378c7c..4dcb83e6c 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -36,7 +36,6 @@ use vars qw($legal_keywords @legal_platform use CGI::Carp qw(fatalsToBrowser); -use Bugzilla; use Bugzilla::Attachment; use Bugzilla::BugMail; use Bugzilla::Config; diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 260cb0554..dffc98a85 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -37,7 +37,6 @@ use base qw(Exporter); PerformSubsts ); -use Bugzilla; use Bugzilla::DB qw(:deprecated); use Bugzilla::User; use Bugzilla::Constants; diff --git a/Bugzilla/Classification.pm b/Bugzilla/Classification.pm index 4f50848a2..50094df0a 100644 --- a/Bugzilla/Classification.pm +++ b/Bugzilla/Classification.pm @@ -19,7 +19,6 @@ use strict; package Bugzilla::Classification; -use Bugzilla; use Bugzilla::Util; use Bugzilla::Error; diff --git a/Bugzilla/Component.pm b/Bugzilla/Component.pm index f1d4c24b2..a3278dea9 100644 --- a/Bugzilla/Component.pm +++ b/Bugzilla/Component.pm @@ -19,7 +19,6 @@ use strict; package Bugzilla::Component; -use Bugzilla; use Bugzilla::Util; use Bugzilla::Error; diff --git a/Bugzilla/Field.pm b/Bugzilla/Field.pm index 37771257c..26265ac3d 100644 --- a/Bugzilla/Field.pm +++ b/Bugzilla/Field.pm @@ -22,7 +22,6 @@ use strict; use base qw(Exporter); @Bugzilla::Field::EXPORT = qw(check_form_field check_form_field_defined); -use Bugzilla; use Bugzilla::Util; use Bugzilla::Error; diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm index e24ccb254..8f4c7885a 100644 --- a/Bugzilla/Group.pm +++ b/Bugzilla/Group.pm @@ -25,7 +25,6 @@ use strict; package Bugzilla::Group; -use Bugzilla; use Bugzilla::Config; use Bugzilla::Util; use Bugzilla::Error; diff --git a/Bugzilla/Milestone.pm b/Bugzilla/Milestone.pm index fa8fc0f82..6a5eeb48f 100644 --- a/Bugzilla/Milestone.pm +++ b/Bugzilla/Milestone.pm @@ -18,7 +18,6 @@ use strict; package Bugzilla::Milestone; -use Bugzilla; use Bugzilla::Util; use Bugzilla::Error; diff --git a/Bugzilla/Product.pm b/Bugzilla/Product.pm index 7af2995c2..0b353725b 100644 --- a/Bugzilla/Product.pm +++ b/Bugzilla/Product.pm @@ -18,7 +18,6 @@ use strict; package Bugzilla::Product; -use Bugzilla; use Bugzilla::Component; use Bugzilla::Classification; use Bugzilla::Version; diff --git a/Bugzilla/Series.pm b/Bugzilla/Series.pm index e1d37423b..db4e1f9f9 100644 --- a/Bugzilla/Series.pm +++ b/Bugzilla/Series.pm @@ -31,7 +31,6 @@ use lib "."; package Bugzilla::Series; -use Bugzilla; use Bugzilla::Util; use Bugzilla::User; diff --git a/Bugzilla/Version.pm b/Bugzilla/Version.pm index 473a186c2..c6c4bdae2 100644 --- a/Bugzilla/Version.pm +++ b/Bugzilla/Version.pm @@ -18,7 +18,6 @@ use strict; package Bugzilla::Version; -use Bugzilla; use Bugzilla::Util; use Bugzilla::Error; |