From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id CC7871F87E for ; Tue, 17 Oct 2023 23:38:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1697585898; bh=+SWiCn2rsr3I+yZztMOKGyCQN/Gtc3HMn5H5GPE13Jw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=ZUQGcZXYZ2SwmpwRsA8awUXmbkg4C+JIb7GNHDxrBkBrpDkuwgKSZg9v0SuzeZ6Hd K9q4J4iXIGsk98seNhzYk4N7r4MOaSC9W8xwyNr8HeKRuIVRmQ/pFAc+R0IX6hclQm kZRA8xXNHUy/+egdHYHkYSbTqLmJq8XkG/ptxjuY= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 16/30] cindex: drop some unused functions Date: Tue, 17 Oct 2023 23:38:01 +0000 Message-ID: <20231017233815.1637932-17-e@80x24.org> In-Reply-To: <20231017233815.1637932-1-e@80x24.org> References: <20231017233815.1637932-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: They're no longer needed with the way PublicInbox::CidxLogP is currently implemented. --- lib/PublicInbox/CodeSearchIdx.pm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/PublicInbox/CodeSearchIdx.pm b/lib/PublicInbox/CodeSearchIdx.pm index feb37be8..36d00aea 100644 --- a/lib/PublicInbox/CodeSearchIdx.pm +++ b/lib/PublicInbox/CodeSearchIdx.pm @@ -1222,9 +1222,4 @@ sub shard_done_wait { # awaitpid cb via ipc_worker_reap PublicInbox::DS::enqueue_reap() if !shards_active(); # once more for PLC } -sub do_quit { $DO_QUIT } - -sub tmpdir { $TMPDIR } - - 1;