()
| 73 | } |
| 74 | |
| 75 | public float readFloat() throws IOException { |
| 76 | return Float.floatToIntBits(readInt()); |
| 77 | } |
| 78 | |
| 79 | public double readDouble() throws IOException { |
| 80 | return Double.doubleToLongBits(readLong()); |
nothing calls this directly
no test coverage detected