fixed bad merge
Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
bd220400a1
commit
bc96561865
|
@ -358,9 +358,9 @@ public class Huffman
|
||||||
return decode(buffer, buffer.remaining());
|
return decode(buffer, buffer.remaining());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String decode(ByteBuffer buffer, int length) throws HpackException.CompressionException
|
public static String decode(ByteBuffer buffer,int length) throws HpackException.CompressionException
|
||||||
{
|
{
|
||||||
StringBuilder out = new StringBuilder(length * 2);
|
Utf8StringBuilder utf8 = new Utf8StringBuilder(length*2);
|
||||||
int node = 0;
|
int node = 0;
|
||||||
int current = 0;
|
int current = 0;
|
||||||
int bits = 0;
|
int bits = 0;
|
||||||
|
|
Loading…
Reference in New Issue