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,AWL,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 468B11F4A7 for ; Wed, 8 May 2019 19:18:56 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/4] DS: drop unused "_undef" sub Date: Wed, 8 May 2019 19:18:55 +0000 Message-Id: <20190508191856.20485-4-e@80x24.org> In-Reply-To: <20190508191856.20485-1-e@80x24.org> References: <20190505005219.31772-1-e@80x24.org> <20190508191856.20485-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: No longer used since we removed the *_ip_string fields --- lib/PublicInbox/DS.pm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm index 5dd1bb7..c03bd5d 100644 --- a/lib/PublicInbox/DS.pm +++ b/lib/PublicInbox/DS.pm @@ -1033,13 +1033,6 @@ sub as_string { return $ret; } -sub _undef { - return undef unless $ENV{DS_DEBUG}; - my $msg = shift || ""; - warn "PublicInbox::DS: $msg\n"; - return undef; -} - package PublicInbox::DS::Timer; # [$abs_float_firetime, $coderef]; sub cancel { -- EW