]> Sergey Matveev's repositories - public-inbox.git/commitdiff
git: drop needless ENOENT import
authorEric Wong <e@80x24.org>
Wed, 25 Jan 2023 10:18:34 +0000 (10:18 +0000)
committerEric Wong <e@80x24.org>
Thu, 26 Jan 2023 02:18:13 +0000 (02:18 +0000)
I imported it in commit 356439a571c536eaa487031802b436d087113f4f
(gcf2 + extsearch: check for unlinked files on Linux, 2021-09-22)
but never used it.

lib/PublicInbox/Git.pm

index a3813bf2123dc02748a2903f3cdc582ca92db7eb..9197ea674a1808bc06aeb86d04d57a3ede2a224e 100644 (file)
@@ -12,7 +12,7 @@ use v5.10.1;
 use parent qw(Exporter);
 use POSIX ();
 use IO::Handle; # ->autoflush
-use Errno qw(EINTR EAGAIN ENOENT);
+use Errno qw(EINTR EAGAIN);
 use File::Glob qw(bsd_glob GLOB_NOSORT);
 use File::Spec ();
 use Time::HiRes qw(stat);