From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS51352 85.143.88.0/21 X-Spam-Status: No, score=-0.4 required=3.0 tests=AWL,BAYES_00, RCVD_IN_BRBL_LASTEXT,RCVD_IN_MSPIKE_BL,RCVD_IN_MSPIKE_ZBI,RCVD_IN_XBL, RDNS_NONE,SPF_FAIL,SPF_HELO_FAIL shortcircuit=no autolearn=no autolearn_force=no version=3.4.0 Received: from 80x24.org (unknown [85.143.95.50]) by dcvr.yhbt.net (Postfix) with ESMTP id BC5D4209C1 for ; Tue, 13 Dec 2016 03:10:23 +0000 (UTC) From: Eric Wong To: spew@80x24.org Subject: [PATCH 3/3] searchmsg: remove unused EPOCH_822 constant Date: Tue, 13 Dec 2016 03:10:13 +0000 Message-Id: <20161213031013.9448-3-e@80x24.org> In-Reply-To: <20161213031013.9448-1-e@80x24.org> References: <20161213031013.9448-1-e@80x24.org> List-Id: This hasn't been needed since our Email::Abstract removal for message threading. --- lib/PublicInbox/SearchMsg.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/PublicInbox/SearchMsg.pm b/lib/PublicInbox/SearchMsg.pm index 9dcc1e6..5779d1e 100644 --- a/lib/PublicInbox/SearchMsg.pm +++ b/lib/PublicInbox/SearchMsg.pm @@ -12,7 +12,6 @@ use Date::Parse qw/str2time/; use PublicInbox::MID qw/mid_clean/; use PublicInbox::Address; our $PFX2TERM_RE = undef; -use constant EPOCH_822 => 'Thu, 01 Jan 1970 00:00:00 +0000'; use POSIX qw(strftime); sub new { -- EW