netty5/codec
Xiaoyan Lin d1ef33b8f4 Change 64 to 63 in Snappy.decodeLiteral
Motivation:

According to https://github.com/google/snappy/blob/master/format_description.txt#L55 , Snappy.decodeLiteral should handle the cases of 60, 61, 62 and 63. However right now it processes 64 instead of 63. I believe it's a typo since `tag >> 2 & 0x3F` must be less than 64.

Modifications:

Use the correct value 63.

Result:

Snappy.decodeLiteral handles the correct case.
2016-01-21 09:59:10 +01:00
..
src Change 64 to 63 in Snappy.decodeLiteral 2016-01-21 09:59:10 +01:00
pom.xml added support for Protobuf codec nano runtime 2016-01-19 21:39:17 +01:00