]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Hval.pm
update copyright headers and email addresses
[public-inbox.git] / lib / PublicInbox / Hval.pm
index 0445e5759cb045df3778bb40c915a201c748111f..e0ec630583dd84364c6131575d8bf5a655d816a4 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
 #
 # represents a header value in various forms
@@ -8,7 +8,7 @@ use warnings;
 use fields qw(raw href);
 use Encode qw(find_encoding);
 use URI::Escape qw(uri_escape_utf8);
-use PublicInbox::MID qw/mid_clean mid_compress/;
+use PublicInbox::MID qw/mid_clean/;
 
 my $enc_ascii = find_encoding('us-ascii');
 
@@ -27,7 +27,7 @@ sub new {
 sub new_msgid {
        my ($class, $msgid, $no_compress) = @_;
        $msgid = mid_clean($msgid);
-       $class->new($msgid, $no_compress ? $msgid : mid_compress($msgid));
+       $class->new($msgid, $msgid);
 }
 
 sub new_oneline {