From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 2AC7A1F461 for ; Wed, 15 May 2019 10:42:07 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] inbox: remove POSIX strftime import Date: Wed, 15 May 2019 10:42:06 +0000 Message-Id: <20190515104206.19901-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: We no longer need it since Inbox->recent hits the overview DB instead of Xapian --- lib/PublicInbox/Inbox.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm index 286555f..76aeefb 100644 --- a/lib/PublicInbox/Inbox.pm +++ b/lib/PublicInbox/Inbox.pm @@ -9,7 +9,6 @@ use PublicInbox::Git; use PublicInbox::MID qw(mid2path); use Devel::Peek qw(SvREFCNT); use PublicInbox::MIME; -use POSIX qw(strftime); my $cleanup_timer; eval { -- EW