8312475: org.jline.util.PumpReader signed byte problem
Reviewed-by: shade, jlahoda
This commit is contained in:
parent
9f767aa44b
commit
bea2d48696
@ -414,7 +414,7 @@ public class PumpReader extends Reader {
|
||||
return EOF;
|
||||
}
|
||||
|
||||
return buffer.get();
|
||||
return buffer.get() & 0xFF;
|
||||
}
|
||||
|
||||
private boolean readUsingBuffer() throws IOException {
|
||||
|
Loading…
x
Reference in New Issue
Block a user