]> Sergey Matveev's repositories - public-inbox.git/commitdiff
view: kill unnecessary assignment
authorEric Wong <e@80x24.org>
Mon, 15 Sep 2014 02:49:18 +0000 (02:49 +0000)
committerEric Wong <e@80x24.org>
Mon, 15 Sep 2014 02:49:18 +0000 (02:49 +0000)
Not sure what I was thinking

lib/PublicInbox/View.pm

index 64e2c18814ee72f39374ab3a8a01057ed7de21f5..92c202387446d7ca6630688817905e99c26a6a82 100644 (file)
@@ -278,7 +278,7 @@ sub headers_to_html_header {
 
        my $irp = $header_obj->header_raw('In-Reply-To');
        if (defined $irp) {
-               my $v = PublicInbox::Hval->new_msgid(my $tmp = $irp);
+               my $v = PublicInbox::Hval->new_msgid($irp);
                my $html = $v->as_html;
                my $href = $v->as_href;
                $rv .= "In-Reply-To: &lt;";