about summary refs log tree commit homepage
path: root/lib/PublicInbox/DirIdle.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2022-11-28 05:31:08 +0000
committerEric Wong <e@80x24.org>2022-11-28 23:38:53 +0000
commitb5b33840e91556da3ec94b5035f1690a44d013a7 (patch)
tree656c365ab82de65bd8187b7a1742e872aa43b4bd /lib/PublicInbox/DirIdle.pm
parent561f4c8b55bf4eca569c10e1e996c96a0c77c3a9 (diff)
downloadpublic-inbox-b5b33840e91556da3ec94b5035f1690a44d013a7.tar.gz
Another tiny step towards an eventual startup time improvements
by avoiding strict.pm
Diffstat (limited to 'lib/PublicInbox/DirIdle.pm')
-rw-r--r--lib/PublicInbox/DirIdle.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/PublicInbox/DirIdle.pm b/lib/PublicInbox/DirIdle.pm
index 9206da9c..55c3982f 100644
--- a/lib/PublicInbox/DirIdle.pm
+++ b/lib/PublicInbox/DirIdle.pm
@@ -1,9 +1,9 @@
-# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # Used by public-inbox-watch for Maildir (and possibly MH in the future)
 package PublicInbox::DirIdle;
-use strict;
+use v5.12;
 use parent 'PublicInbox::DS';
 use PublicInbox::Syscall qw(EPOLLIN);
 use PublicInbox::In2Tie;