From: Eric Wong Date: Sun, 5 Jul 2020 23:27:42 +0000 (+0000) Subject: wwwstream: use parent.pm and no warnings X-Git-Tag: v1.6.0~274 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=89ebf169c3d5edd4f0c19124d586f076fb8d43b2 wwwstream: use parent.pm and no warnings parent.pm is leaner than base and we'll rely on `-w' for warnings during development. --- diff --git a/lib/PublicInbox/WwwStream.pm b/lib/PublicInbox/WwwStream.pm index 4d82cbb4..fd558e1b 100644 --- a/lib/PublicInbox/WwwStream.pm +++ b/lib/PublicInbox/WwwStream.pm @@ -8,8 +8,7 @@ # more common "push" model) package PublicInbox::WwwStream; use strict; -use warnings; -use base qw(Exporter); +use parent qw(Exporter); our @EXPORT_OK = qw(html_oneshot); use bytes (); # length use PublicInbox::Hval qw(ascii_html prurl);