Commit 24a97437 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 339858: Remove useless module dependencies in Bugzilla::Auth::* - Patch by…

Bug 339858: Remove useless module dependencies in Bugzilla::Auth::* - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
parent 7b70d6c5
......@@ -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) = @_;
......
......@@ -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;
......
......@@ -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;
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment