fixed bad merge

Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
Greg Wilkins 2019-09-11 10:18:17 +10:00
parent bd220400a1
commit bc96561865
1 changed files with 3 additions and 3 deletions

View File

@ -358,9 +358,9 @@ public class Huffman
return decode(buffer, buffer.remaining());
}
public static String decode(ByteBuffer buffer, int length) throws HpackException.CompressionException
{
StringBuilder out = new StringBuilder(length * 2);
public static String decode(ByteBuffer buffer,int length) throws HpackException.CompressionException
{
Utf8StringBuilder utf8 = new Utf8StringBuilder(length*2);
int node = 0;
int current = 0;
int bits = 0;