(int b)
| 72 | } |
| 73 | |
| 74 | public final void writeByte(int b) |
| 75 | { |
| 76 | if (DeflaterConstants.DEBUGGING && start != 0) |
| 77 | throw new IllegalStateException(); |
| 78 | buf[end++] = (byte) b; |
| 79 | } |
| 80 | |
| 81 | public final void writeShort(int s) |
| 82 | { |
no outgoing calls
no test coverage detected