From d29b24e5891795969b06618d983f35140d5ee0fe Mon Sep 17 00:00:00 2001 From: Xavier Guimard Date: Thu, 3 Oct 2013 19:55:14 +0000 Subject: [PATCH] Clean AuthGoogle --- lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthGoogle.pm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthGoogle.pm b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthGoogle.pm index cd006659a..a9e4dad60 100644 --- a/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthGoogle.pm +++ b/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/AuthGoogle.pm @@ -3,7 +3,6 @@ ##@class # Google authentication backend class. -# The form must return a google_go field package Lemonldap::NG::Portal::AuthGoogle; use strict; @@ -11,19 +10,16 @@ use Lemonldap::NG::Portal::Simple; use Lemonldap::NG::Common::Regexp; use LWP::UserAgent; use URI::Escape; -use Cache::FileCache; use constant AXSPECURL => 'http://openid.net/srv/ax/1.0'; use constant GOOGLEENDPOINT => 'https://www.google.com/accounts/o8/id'; our $VERSION = '1.3.0'; -our $initDone; our $googleEndPoint; BEGIN { eval { require threads::shared; - threads::shared::share($initDone); threads::shared::share($googleEndPoint); }; }