about summary refs log tree commit homepage
path: root/lib/PublicInbox/InputPipe.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/InputPipe.pm')
-rw-r--r--lib/PublicInbox/InputPipe.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/PublicInbox/InputPipe.pm b/lib/PublicInbox/InputPipe.pm
index f4d57e7d..232f20e8 100644
--- a/lib/PublicInbox/InputPipe.pm
+++ b/lib/PublicInbox/InputPipe.pm
@@ -39,7 +39,6 @@ sub consume {
         if ($@) { # regular file (but not w/ select|IO::Poll backends)
                 $self->{-need_rq} = 1;
                 $self->requeue;
-        } elsif (do { no warnings 'unopened'; !stat($in) }) { # ProcessIONBF
         } elsif (-p _ || -S _) { # O_NONBLOCK for sockets and pipes
                 $in->blocking(0);
         } elsif (-t $in) { # isatty(3) can't use `_' stat cache