(float f)
| 58 | } |
| 59 | |
| 60 | public void writeFloat(float f) throws IOException { |
| 61 | writeInt(Float.floatToIntBits(f)); |
| 62 | } |
| 63 | |
| 64 | public void writeDouble(double d) throws IOException { |
| 65 | writeLong(Double.doubleToLongBits(d)); |
nothing calls this directly
no test coverage detected