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-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,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 BDE2B1F9FD; Tue, 16 Mar 2021 09:14:28 +0000 (UTC) Date: Tue, 16 Mar 2021 03:14:28 -0600 From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 3/2] lock: remove new_tmp method Message-ID: <20210316091428.GA8982@dcvr> References: <20210316084807.16758-1-e@80x24.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210316084807.16758-1-e@80x24.org> List-Id: Unused as of commit dda8237aeb5722b3a48c31896d9b7398e50823f1 ("lei_to_mail: prepare for worker offload") when we switched to using the LeiOverview output lock. --- lib/PublicInbox/Lock.pm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/PublicInbox/Lock.pm b/lib/PublicInbox/Lock.pm index c0c4c15c..76c3ffb2 100644 --- a/lib/PublicInbox/Lock.pm +++ b/lib/PublicInbox/Lock.pm @@ -8,7 +8,6 @@ use v5.10.1; use Fcntl qw(:flock :DEFAULT); use Carp qw(croak); use PublicInbox::OnDestroy; -use File::Temp (); # we only acquire the flock if creating or reindexing; # PublicInbox::Import already has the lock on its own. @@ -58,10 +57,4 @@ sub lock_for_scope_fast { PublicInbox::OnDestroy->new(@single_pid, \&lock_release_fast, $self); } -sub new_tmp { - my ($cls, $ident) = @_; - my $tmp = File::Temp->new("$ident.lock-XXXXXX", TMPDIR => 1); - bless { lock_path => $tmp->filename, tmp => $tmp }, $cls; -} - 1;