mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
8312475: org.jline.util.PumpReader signed byte problem
Backport-of: bea2d48696
This commit is contained in:
committed by
Vitaly Provodin
parent
d37b3a376a
commit
63e780433d
@@ -413,7 +413,7 @@ public class PumpReader extends Reader {
|
||||
return EOF;
|
||||
}
|
||||
|
||||
return buffer.get();
|
||||
return buffer.get() & 0xFF;
|
||||
}
|
||||
|
||||
private boolean readUsingBuffer() throws IOException {
|
||||
|
||||
Reference in New Issue
Block a user