(double v)
| 145 | } |
| 146 | |
| 147 | public void writeDouble(double v) throws IOException { |
| 148 | writeLong(Double.doubleToLongBits(v)); |
| 149 | } |
| 150 | |
| 151 | public void writeBytes(String s) throws IOException { |
| 152 | blockData(null, s.getBytes(), null); |
nothing calls this directly
no test coverage detected