From 3b92377d93f743368858e519ee6813f82a84f32b Mon Sep 17 00:00:00 2001 From: Slaven Rezic Date: Thu, 18 Apr 2013 15:31:09 +0200 Subject: [PATCH] remove unnecessary "no strict refs" --- lib/IPC/Run.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/IPC/Run.pm b/lib/IPC/Run.pm index 2436bc5..60a8442 100644 --- a/lib/IPC/Run.pm +++ b/lib/IPC/Run.pm @@ -1234,7 +1234,6 @@ sub _empty($) { ! ( defined $_[0] && length $_[0] ) } ## 'safe' versions of otherwise fun things to do. See also IPC::Run::Win32Helper. sub _close { confess 'undef' unless defined $_[0]; - no strict 'refs'; my $fd = $_[0] =~ /^\d+$/ ? $_[0] : fileno $_[0]; my $r = POSIX::close $fd; $r = $r ? '' : " ERROR $!";