Another tiny step towards improve startup performance by relying on Perl 5.12 strictness and avoiding strict.pm --- lib/PublicInbox/LeiMirror.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/lib/PublicInbox/LeiMirror.pm b/lib/PublicInbox/LeiMirror.pm index c3512d43..279ce30e 100644 --- a/lib/PublicInbox/LeiMirror.pm +++ b/lib/PublicInbox/LeiMirror.pm @@ -3,8 +3,7 @@ # "lei add-external --mirror" support (also "public-inbox-clone"); package PublicInbox::LeiMirror; -use strict; -use v5.10.1; +use v5.12; use parent qw(PublicInbox::IPC); use IO::Uncompress::Gunzip qw(gunzip $GunzipError); use IO::Compress::Gzip qw(gzip $GzipError);
