X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FConfig-Any.git;a=blobdiff_plain;f=lib%2FConfig%2FAny%2FPerl.pm;h=936efab7540846b6aea7a6554b79e91ba1ea5e60;hp=5d8e0a580275a79bd648282e0ad91b985cd3ae75;hb=11501cf7c7fd46e8723c2de165a00e2f8deefc72;hpb=92a04e78451078b33f75e7c44d247b024c27b4f7 diff --git a/lib/Config/Any/Perl.pm b/lib/Config/Any/Perl.pm index 5d8e0a5..936efab 100644 --- a/lib/Config/Any/Perl.pm +++ b/lib/Config/Any/Perl.pm @@ -47,24 +47,30 @@ sub load { my $content; unless ( $content = $cache{ $file } ) { - $content = eval { require $file }; + $content = require $file; $cache{ $file } = $content; } return $content; } -=head1 AUTHOR +=head2 is_supported( ) -=over 4 +Returns true. -=item * Brian Cassidy Ebricas@cpan.orgE +=cut -=back +sub is_supported { + return 1; +} + +=head1 AUTHOR + +Brian Cassidy Ebricas@cpan.orgE =head1 COPYRIGHT AND LICENSE -Copyright 2006 by Brian Cassidy +Copyright 2007 by Brian Cassidy This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.