From d32333a12ca46861fab82640c3697fdbca879bd2 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Mon, 1 Jun 2020 10:06:51 +0000 Subject: inbox: msg_by_*: remove $(size)ref args None of our current callers care about the size of the blob we're retrieving, so stop wasting stack space and code for it. --- lib/PublicInbox/Inbox.pm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'lib/PublicInbox/Inbox.pm') diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm index bd1489e3..38abdfe5 100644 --- a/lib/PublicInbox/Inbox.pm +++ b/lib/PublicInbox/Inbox.pm @@ -310,25 +310,25 @@ sub nntp_usable { } # for v1 users w/o SQLite only -sub msg_by_path ($$;$) { - my ($self, $path, $ref) = @_; - git($self)->cat_file('HEAD:'.$path, $ref); +sub msg_by_path ($$) { + my ($self, $path) = @_; + git($self)->cat_file('HEAD:'.$path); } -sub msg_by_smsg ($$;$) { - my ($self, $smsg, $ref) = @_; +sub msg_by_smsg ($$) { + my ($self, $smsg) = @_; # ghosts may have undef smsg (from SearchThread.node) or # no {blob} field return unless defined $smsg; defined(my $blob = $smsg->{blob}) or return; - git($self)->cat_file($blob, $ref); + git($self)->cat_file($blob); } sub smsg_mime { - my ($self, $smsg, $ref) = @_; - if (my $s = msg_by_smsg($self, $smsg, $ref)) { + my ($self, $smsg) = @_; + if (my $s = msg_by_smsg($self, $smsg)) { $smsg->{mime} = PublicInbox::Eml->new($s); return $smsg; } @@ -355,14 +355,14 @@ sub smsg_by_mid ($$) { PublicInbox::Smsg::psgi_cull($smsg); } -sub msg_by_mid ($$;$) { - my ($self, $mid, $ref) = @_; +sub msg_by_mid ($$) { + my ($self, $mid) = @_; over($self) or - return msg_by_path($self, mid2path($mid), $ref); + return msg_by_path($self, mid2path($mid)); my $smsg = smsg_by_mid($self, $mid); - $smsg ? msg_by_smsg($self, $smsg, $ref) : undef; + $smsg ? msg_by_smsg($self, $smsg) : undef; } sub recent { -- cgit v1.2.3-24-ge0c7