summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-05-13 12:52:26 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-05-13 12:52:26 +0200
commit04fe107361cd6b2002c88970e97e0fd4733222e1 (patch)
tree93b2fa7e22445eec0afda595477daad11e74acba
parent91ae0fd85e249a8035a1a1fb99647d8b3fca0a69 (diff)
lib: We don't export anything, so do not use Exporter
-rw-r--r--lib/App/Raps2/Password.pm3
-rw-r--r--lib/App/Raps2/UI.pm3
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/App/Raps2/Password.pm b/lib/App/Raps2/Password.pm
index ca7874b..6bd6501 100644
--- a/lib/App/Raps2/Password.pm
+++ b/lib/App/Raps2/Password.pm
@@ -5,14 +5,11 @@ use warnings;
use autodie;
use 5.010;
-use base 'Exporter';
-
use Carp 'confess';
use Crypt::CBC;
use Crypt::Eksblowfish;
use Crypt::Eksblowfish::Bcrypt qw(bcrypt_hash en_base64 de_base64);
-our @EXPORT_OK = ();
our $VERSION = '0.1';
sub new {
diff --git a/lib/App/Raps2/UI.pm b/lib/App/Raps2/UI.pm
index 29e8ef1..67d6790 100644
--- a/lib/App/Raps2/UI.pm
+++ b/lib/App/Raps2/UI.pm
@@ -5,12 +5,9 @@ use warnings;
use autodie;
use 5.010;
-use base 'Exporter';
-
use Carp qw(confess);
use POSIX;
-our @EXPORT_OK = ();
our $VERSION = '0.1';
sub new {