remove eval so the Perl loader dies on invalid content.
[p5sagit/Config-Any.git] / lib / Config / Any / Perl.pm
index 6a2e330..936efab 100644 (file)
@@ -47,7 +47,7 @@ sub load {
     my $content;
 
     unless ( $content = $cache{ $file } ) {
-        $content = eval { require $file };
+        $content = require $file;
         $cache{ $file } = $content;
     }