make unused vars tests pass
Karen Etheridge [Wed, 17 Jul 2013 02:57:33 +0000 (19:57 -0700)]
lib/MooseX/Storage/Engine.pm
lib/MooseX/Storage/Util.pm

index 9969d5a..5f4f680 100644 (file)
@@ -284,14 +284,14 @@ my %TYPES = (
 );
 
 sub add_custom_type_handler {
-    my ($class, $type_name, %handlers) = @_;
+    my ($self, $type_name, %handlers) = @_;
     (exists $handlers{expand} && exists $handlers{collapse})
         || confess "Custom type handlers need an expand *and* a collapse method";
     $TYPES{$type_name} = \%handlers;
 }
 
 sub remove_custom_type_handler {
-    my ($class, $type_name) = @_;
+    my ($self, $type_name) = @_;
     delete $TYPES{$type_name} if exists $TYPES{$type_name};
 }
 
index 20da8db..c652f2e 100644 (file)
@@ -27,7 +27,7 @@ sub peek {
 }
 
 sub _inflate_json {
-    my ($class, $json) = @_;
+    my ($self, $json) = @_;
 
     eval { require JSON::Any; JSON::Any->import };
     confess "Could not load JSON module because : $@" if $@;
@@ -43,7 +43,7 @@ sub _inflate_json {
 }
 
 sub _inflate_yaml {
-    my ($class, $yaml) = @_;
+    my ($self, $yaml) = @_;
 
     require Best;
     eval { Best->import([[ qw[YAML::Syck YAML] ]]) };