From: Eric Wong Date: Sun, 2 Feb 2020 06:52:17 +0000 (+0000) Subject: convert: remove unused variables capturing :from X-Git-Tag: v1.3.0~28 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=b02b2a5d7cb5a811f041febd09d625bdc1af1d8e convert: remove unused variables capturing :from Looking at git history, they were never used. --- diff --git a/script/public-inbox-convert b/script/public-inbox-convert index 8ac111a2..acecf3d5 100755 --- a/script/public-inbox-convert +++ b/script/public-inbox-convert @@ -87,7 +87,6 @@ $clone may not be valid after migrating to v2, not copying } }); my $state = ''; -my ($prev, $from); my $head = $old->{ref_head} || 'HEAD'; my ($rd, $pid) = $old->git->popen(qw(fast-export --use-done-feature), $head); $v2w->idx_init; @@ -132,11 +131,6 @@ while (<$rd>) { $last = 'd'; next; } - if (m{^from (:[0-9]+)}) { - $prev = $from; - $from = $1; - # no next - } } last if $_ eq "done\n"; $w->print($_) or $im->wfail;