]> Sergey Matveev's repositories - public-inbox.git/commitdiff
githttpbackend: remove unused $BIN variable
authorEric Wong <e@80x24.org>
Thu, 20 Oct 2022 08:43:11 +0000 (08:43 +0000)
committerEric Wong <e@80x24.org>
Mon, 24 Oct 2022 08:18:26 +0000 (08:18 +0000)
It hasn't been used in many years since commit
c1630b7dc4ef (githttpbackend: match Content-Type of git-http-backend(1), 2016-07-03)

lib/PublicInbox/GitHTTPBackend.pm

index 72b8e6c3403f4db6edaebf2c089396f144c73a4e..1eb51f2704e1f2f06414d7f8db78b9c08ef743fc 100644 (file)
@@ -27,7 +27,6 @@ my @binary = ('objects/[a-f0-9]{2}/[a-f0-9]{38,62}',
        'objects/pack/pack-[a-f0-9]{40,64}\.(?:pack|idx)');
 
 our $ANY = join('|', @binary, @text, 'git-upload-pack');
-my $BIN = join('|', @binary);
 my $TEXT = join('|', @text);
 
 sub serve {