]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/WwwText.pm
get rid of unnecessary bytes::length usage
[public-inbox.git] / lib / PublicInbox / WwwText.pm
index 76a95a6b640c879083b5010458a803dee4f815a7..db5060eaa460bf002c4377b93eb1b14c1cd5c7ba 100644 (file)
@@ -4,8 +4,7 @@
 # used for displaying help texts and other non-mail content
 package PublicInbox::WwwText;
 use strict;
-use warnings;
-use bytes (); # only for bytes::length
+use v5.10.1;
 use PublicInbox::Linkify;
 use PublicInbox::WwwStream;
 use PublicInbox::Hval qw(ascii_html);
@@ -43,7 +42,7 @@ sub get_text {
                        $txt = $gzf->translate($txt);
                        $txt .= $gzf->zflush;
                }
-               $hdr->[3] = bytes::length($txt);
+               $hdr->[3] = length($txt);
                return [ $code, $hdr, [ $txt ] ]
        }