()
| 187 | } |
| 188 | |
| 189 | public float readFloat() throws IOException { |
| 190 | return Float.intBitsToFloat(rawBlockDataInt()); |
| 191 | } |
| 192 | |
| 193 | public double readDouble() throws IOException { |
| 194 | return Double.longBitsToDouble(rawBlockDataLong()); |
nothing calls this directly
no test coverage detected