Skip to content
Snippets Groups Projects
Commit 1948f280 authored by bontric's avatar bontric
Browse files

fix byte to integer conversion in feedableinputstream

parent 78c43c9f
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -24,7 +24,7 @@ public class FeedableSyncInputStream extends InputStream {
}
}
return activeBuffer[activeBufferPointer++];
return activeBuffer[activeBufferPointer++] & 0xff;
}
private boolean hasBytes() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment