diff options
author | lpsolit%gmail.com <> | 2006-06-01 09:19:36 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-06-01 09:19:36 +0200 |
commit | 24a97437dccabbe0778e2e4f8330b47aefda428d (patch) | |
tree | 3e2b2965acbfa59a97c02255a01606cbf5121e7e /Bugzilla/Auth/Persist | |
parent | 7b70d6c5950e2840db85b0207f715c58708e2e8d (diff) | |
download | bugzilla-24a97437dccabbe0778e2e4f8330b47aefda428d.tar.gz bugzilla-24a97437dccabbe0778e2e4f8330b47aefda428d.tar.xz |
Bug 339858: Remove useless module dependencies in Bugzilla::Auth::* - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'Bugzilla/Auth/Persist')
-rw-r--r-- | Bugzilla/Auth/Persist/Cookie.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Auth/Persist/Cookie.pm b/Bugzilla/Auth/Persist/Cookie.pm index ce59ef4bd..c41948e72 100644 --- a/Bugzilla/Auth/Persist/Cookie.pm +++ b/Bugzilla/Auth/Persist/Cookie.pm @@ -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); |