adding support for Deferred
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / Util.pm
index ec23204..0096b0b 100644 (file)
@@ -36,7 +36,7 @@ sub _inflate_json {
     eval { JSON::Any->import };
     confess "Could not load JSON module because : $@" if $@; 
     
-    utf8::encode($json) if utf8::is_utf8($json) or utf8::valid($json);    
+    utf8::encode($json) if utf8::is_utf8($json);    
     
     my $data = eval { JSON::Any->jsonToObj($json) };
     if ($@) {
@@ -142,7 +142,7 @@ Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2007 by Infinity Interactive, Inc.
+Copyright 2007-2008 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>