Bug 339858: Remove useless module dependencies in Bugzilla::Auth::* - Patch by Fr�d�ric Buclin <LpSolit@gmail.com> r=mkanat a=justdave

This commit is contained in:
lpsolit%gmail.com 2006-06-01 00:19:36 +00:00
parent cdd64c7beb
commit 45619326d8
4 changed files with 3 additions and 4 deletions

View File

@ -36,7 +36,7 @@ use constant user_can_create_account => 1;
use Bugzilla::Config;
use Bugzilla::Constants;
use Bugzilla::Util;
use Bugzilla::User;
use Bugzilla::Error;
sub get_login_info {
my ($self) = @_;

View File

@ -21,7 +21,6 @@ use base qw(Bugzilla::Auth::Login);
use Bugzilla::Auth;
use Bugzilla::Constants;
use Bugzilla::User;
use Bugzilla::Util;
use constant requires_persistence => 0;

View File

@ -27,7 +27,6 @@ use base qw(Bugzilla::Auth::Login);
use Bugzilla::Config;
use Bugzilla::Constants;
use Bugzilla::Error;
use Bugzilla::User;
use constant can_logout => 0;
use constant can_login => 0;

View File

@ -32,10 +32,11 @@ package Bugzilla::Auth::Persist::Cookie;
use strict;
use fields qw();
use Bugzilla::Auth;
use Bugzilla::Config;
use Bugzilla::Constants;
use Bugzilla::Util;
use Bugzilla::User;
use Bugzilla::Token;
use List::Util qw(first);