From: Dave Rolsky Date: Tue, 5 May 2009 19:49:55 +0000 (+0000) Subject: Remove unneeded extra parens X-Git-Tag: 1.14_01~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0d15a4b004d44321e3c65ec0058c067752838e11;p=catagits%2FCatalyst-Devel.git Remove unneeded extra parens --- diff --git a/lib/Catalyst/Watcher/Inotify.pm b/lib/Catalyst/Watcher/Inotify.pm index ac262ac..d97115d 100644 --- a/lib/Catalyst/Watcher/Inotify.pm +++ b/lib/Catalyst/Watcher/Inotify.pm @@ -56,7 +56,7 @@ sub _wait_for_events { my @interesting; for my $event (@events) { - if ( ( $event->IN_CREATE && $event->IN_ISDIR ) ) { + if ( $event->IN_CREATE && $event->IN_ISDIR ) { $self->_add_directory( $event->fullname ); push @interesting, $event; }