aboutsummaryrefslogtreecommitdiff
path: root/Plugin/DevNull.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Plugin/DevNull.pm')
-rw-r--r--Plugin/DevNull.pm3
1 files changed, 0 insertions, 3 deletions
diff --git a/Plugin/DevNull.pm b/Plugin/DevNull.pm
index b29a71a..0565aec 100644
--- a/Plugin/DevNull.pm
+++ b/Plugin/DevNull.pm
@@ -3,15 +3,12 @@ package Plugin::DevNull;
use strict;
use warnings;
-my %config;
my $run_command;
sub configure {
my $self = shift;
my $cmdref = shift;
- my $cref = shift;
$run_command = shift;
- %config = %$cref;
$cmdref->("hush", sub { $self->hush(@_); } );
$cmdref->("devnull", sub { $self->hush(@_); } );