(float v)
| 141 | } |
| 142 | |
| 143 | public void writeFloat(float v) throws IOException { |
| 144 | writeInt(Float.floatToIntBits(v)); |
| 145 | } |
| 146 | |
| 147 | public void writeDouble(double v) throws IOException { |
| 148 | writeLong(Double.doubleToLongBits(v)); |
nothing calls this directly
no test coverage detected