From f4edadf05fad95c0aeb3df55fd617abc98af0f22 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Mon, 18 Oct 2010 02:18:37 -0400 Subject: [PATCH] begin modularization of Crypt::Monkeysphere::MSVA -- not exporting raw functions any more --- Crypt/Monkeysphere/MSVA.pm | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Crypt/Monkeysphere/MSVA.pm b/Crypt/Monkeysphere/MSVA.pm index 98984c5..8ccebf6 100755 --- a/Crypt/Monkeysphere/MSVA.pm +++ b/Crypt/Monkeysphere/MSVA.pm @@ -19,16 +19,6 @@ use strict; use warnings; - BEGIN { - use Exporter (); - our (@EXPORT_OK,@ISA); - @ISA = qw(Exporter); - @EXPORT_OK = qw( &reviewcert ); - } - our @EXPORT_OK; - - use Crypt::Monkeysphere::MSVA::MarginalUI; - use Crypt::Monkeysphere::MSVA::Logger; use parent qw(HTTP::Server::Simple::CGI); require Crypt::X509; use Regexp::Common qw /net/; @@ -40,6 +30,8 @@ use File::Spec; use File::HomeDir; use Config::General; + use Crypt::Monkeysphere::MSVA::MarginalUI; + use Crypt::Monkeysphere::MSVA::Logger; use JSON; use POSIX qw(strftime); -- 2.26.2