(int s)
| 87 | } |
| 88 | |
| 89 | public final void writeInt(int s) |
| 90 | { |
| 91 | if (DeflaterConstants.DEBUGGING && start != 0) |
| 92 | throw new IllegalStateException(); |
| 93 | buf[end++] = (byte) s; |
| 94 | buf[end++] = (byte) (s >> 8); |
| 95 | buf[end++] = (byte) (s >> 16); |
| 96 | buf[end++] = (byte) (s >> 24); |
| 97 | } |
| 98 | |
| 99 | public final void writeBlock(byte[] block, int offset, int len) |
| 100 | { |
no outgoing calls
no test coverage detected