remove useless variable declaration

This commit is contained in:
Graham Knop 2010-04-15 14:03:09 -05:00
parent aaa0924dc7
commit 7c7136f02a

View file

@ -55,7 +55,6 @@ sub handler {
return Apache2::Const::OK
unless -e $path . '.wgaccess';
my $fileContents;
open my $FILE, '<' , $path . '.wgaccess';
my $fileContents = do { local $/; <$FILE> };
close($FILE);