(double d)
| 62 | } |
| 63 | |
| 64 | public void writeDouble(double d) throws IOException { |
| 65 | writeLong(Double.doubleToLongBits(d)); |
| 66 | } |
| 67 | |
| 68 | public void writeLong(long l) throws IOException { |
| 69 | write((byte)(l >> 56)); |
nothing calls this directly
no test coverage detected