remove caching code from ::Perl
Rafael Kitover [Mon, 15 Feb 2010 13:52:28 +0000 (13:52 +0000)]
lib/Config/Any/Perl.pm

index daf27f6..6d214f2 100644 (file)
@@ -5,8 +5,6 @@ use warnings;
 
 use base 'Config::Any::Base';
 
-my %cache;
-
 =head1 NAME
 
 Config::Any::Perl - Load Perl config files
@@ -47,23 +45,15 @@ sub load {
     my $class = shift;
     my $file  = shift;
     my $content;
-
-    my $mtime = (stat($file))[9];
-
-    if ( (not exists $cache{ $file }) || $cache{ $file }{ mtime } < $mtime ) {
-        my $exception;
-        {
-            local $@;
-            $content = do $file;
-            $exception = $@;
-        }
-        die $exception if $exception;
-
-        $cache{ $file }{ mtime   } = $mtime;
-        $cache{ $file }{ content } = $content;
+    my $exception;
+    {
+        local $@;
+        $content = do $file;
+        $exception = $@;
     }
+    die $exception if $exception;
 
-    return $cache{ $file }{ content };
+    return $content;
 }
 
 =head1 AUTHOR