java-binary-block-parser
java-binary-block-parser copied to clipboard
fixed bug which caused to return wrong result when bit was shifted
Result was wrongly shifted.
Lets say I have read a 1bit number, the rest bits in the buffer where left shifted in line 1116 by 1 but to interpret them correctly they need to be right shifted by 1 and not 7