Apply patch from RT#46343
Tomas Doran (t0m) [Mon, 1 Jun 2009 23:44:46 +0000 (00:44 +0100)]
Changes
lib/MooseX/Storage/Util.pm

diff --git a/Changes b/Changes
index 88c69ea..aef0061 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,7 +1,8 @@
 Revision history for MooseX-Storage
 
 0.18
-   * Added support for Maybe[...] constraints
+   * Fix test failures without JSON::Any. Patch from RT#46343 (Nicholas Clarke)
+   * Added support for Maybe[...] constraints fixing RT#43165 (plu)
 
 0.17
    * Change MooseX::Storage::Engine to use get_all_attributes,
index 6bdd02e..d67f295 100644 (file)
@@ -31,9 +31,8 @@ sub peek {
 
 sub _inflate_json {
     my ($class, $json) = @_;
-    
-    require JSON::Any;
-    eval { JSON::Any->import };
+
+    eval { require JSON::Any; JSON::Any->import };
     confess "Could not load JSON module because : $@" if $@; 
     
     utf8::encode($json) if utf8::is_utf8($json);