about summary refs log tree commit homepage
path: root/lib/PublicInbox/NetReader.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-03-13 19:38:25 +0000
committerEric Wong <e@80x24.org>2023-03-14 20:51:00 +0000
commit3a2c46e6f7bf650e69cf7c7b9e3d62843e6deab9 (patch)
treeeb5235509b67472ec6c1520d9cd4967433684fc0 /lib/PublicInbox/NetReader.pm
parentb192069672eb5e9de3fdd07064a9c9231390d584 (diff)
downloadpublic-inbox-3a2c46e6f7bf650e69cf7c7b9e3d62843e6deab9.tar.gz
None of these are affected by the Perl unicode_strings feature,
so they can `use v5.12' safely
Diffstat (limited to 'lib/PublicInbox/NetReader.pm')
-rw-r--r--lib/PublicInbox/NetReader.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/NetReader.pm b/lib/PublicInbox/NetReader.pm
index 4de2583e..6802fa72 100644
--- a/lib/PublicInbox/NetReader.pm
+++ b/lib/PublicInbox/NetReader.pm
@@ -3,8 +3,7 @@
 
 # common reader code for IMAP and NNTP (and maybe JMAP)
 package PublicInbox::NetReader;
-use strict;
-use v5.10.1;
+use v5.12;
 use parent qw(Exporter PublicInbox::IPC);
 use PublicInbox::Eml;
 use PublicInbox::Config;