()
| 103 | } |
| 104 | |
| 105 | default int readInt() throws IOException { |
| 106 | return readByte() & 0xFF | (readByte() & 0xFF) << 8 | (readByte() & 0xFF) << 16 | (readByte() & 0xFF) << 24; |
| 107 | } |
| 108 |
nothing calls this directly
no outgoing calls
no test coverage detected