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 991411FAEE; Thu, 29 Mar 2018 10:28:31 +0000 (UTC) From: "Eric Wong (Contractor, The Linux Foundation)" To: meta@public-inbox.org Cc: "Eric Wong (Contractor, The Linux Foundation)" Subject: [PATCH 11/14] v2writable: cleanup: get rid of unused fields Date: Thu, 29 Mar 2018 10:28:16 +0000 Message-Id: <20180329102819.15234-12-e@80x24.org> In-Reply-To: <20180329102819.15234-1-e@80x24.org> References: <20180329102819.15234-1-e@80x24.org> List-Id: The layout of this structure ended up being a bit different and the read-only access is handled through the ::Inbox class, instead. --- lib/PublicInbox/V2Writable.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/PublicInbox/V2Writable.pm b/lib/PublicInbox/V2Writable.pm index ef9867d..b516278 100644 --- a/lib/PublicInbox/V2Writable.pm +++ b/lib/PublicInbox/V2Writable.pm @@ -53,8 +53,6 @@ sub new { my $self = { -inbox => $v2ibx, im => undef, # PublicInbox::Import - xap_rw => undef, # PublicInbox::V2SearchIdx - xap_ro => undef, partitions => $nparts, parallel => 1, transact_bytes => 0, -- EW