From: Eric Wong Date: Sat, 5 Mar 2016 06:45:41 +0000 (+0000) Subject: feed: remove unnecessary encoding lookup X-Git-Tag: v1.0.0~648 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=22f181c10256278f0fb4c9a664a82e3e68d208a6;p=public-inbox.git feed: remove unnecessary encoding lookup We handle encoding-related things elsewhere. --- diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm index 65375fad..47408535 100644 --- a/lib/PublicInbox/Feed.pm +++ b/lib/PublicInbox/Feed.pm @@ -18,9 +18,6 @@ use constant { MAX_PER_PAGE => 25, # this needs to be tunable }; -use Encode qw/find_encoding/; -my $enc_utf8 = find_encoding('UTF-8'); - # main function sub generate { my ($ctx) = @_;