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: 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.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 39120209B2 for ; Tue, 13 Dec 2016 03:48:17 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/3] searchmsg: remove unused EPOCH_822 constant Date: Tue, 13 Dec 2016 03:48:15 +0000 Message-Id: <20161213034815.30324-4-e@80x24.org> In-Reply-To: <20161213034815.30324-1-e@80x24.org> References: <20161213034815.30324-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