File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/libraries/Common/src/System/Net/Http/aspnetcore/Http2/Hpack Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ namespace System.Net.Http.HPack
9
9
{
10
10
internal static class Huffman
11
11
{
12
- private static ushort [ ] s_decodingTree = GenerateDecodingLookupTree ( ) ;
13
-
14
12
// HPack static huffman code. see: https://httpwg.org/specs/rfc7541.html#huffman.code
15
13
private static readonly ( uint code , int bitLength ) [ ] _encodingTable = new ( uint code , int bitLength ) [ ]
16
14
{
@@ -273,6 +271,8 @@ internal static class Huffman
273
271
( 0b11111111_11111111_11111111_11111100 , 30 )
274
272
} ;
275
273
274
+ private static ushort [ ] s_decodingTree = GenerateDecodingLookupTree ( ) ;
275
+
276
276
public static ( uint encoded , int bitLength ) Encode ( int data )
277
277
{
278
278
return _encodingTable [ data ] ;
You can’t perform that action at this time.
0 commit comments