()
| 120 | } |
| 121 | |
| 122 | @Override |
| 123 | public int read() throws IOException { |
| 124 | return (read(singleByte) == 1) ? toUnsignedInt(singleByte[0]) : -1; |
| 125 | } |
| 126 | |
| 127 | // TODO(chrisn): Consider trying to encode/flush directly to the argument byte |
| 128 | // buffer when possible. |
no test coverage detected