remove unneeded utf8 declarations
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Util.pm
index 7d8aba0..91ad692 100644 (file)
@@ -2,10 +2,6 @@ package MooseX::Storage::Util;
 use Moose qw(confess blessed);
 
 use MooseX::Storage::Engine ();
-use utf8 ();
-
-our $VERSION   = '0.34';
-our $AUTHORITY = 'cpan:STEVAN';
 
 sub peek {
     my ($class, $data, %options) = @_;
@@ -30,7 +26,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 $@;
@@ -46,7 +42,7 @@ sub _inflate_json {
 }
 
 sub _inflate_yaml {
-    my ($class, $yaml) = @_;
+    my ($self, $yaml) = @_;
 
     require Best;
     eval { Best->import([[ qw[YAML::Syck YAML] ]]) };
@@ -74,7 +70,7 @@ __END__
 
 =head1 NAME
 
-MooseX::Storage::Util - A MooseX::Storage swiss-army chainsaw
+MooseX::Storage::Util - A MooseX::Storage Swiss Army chainsaw
 
 =head1 DESCRIPTION
 
@@ -127,6 +123,8 @@ found in the key for you.
 
 =back
 
+=for stopwords TODO
+
 =head1 TODO
 
 Add more stuff to this module :)