(int s)
| 79 | } |
| 80 | |
| 81 | public final void writeShort(int s) |
| 82 | { |
| 83 | if (DeflaterConstants.DEBUGGING && start != 0) |
| 84 | throw new IllegalStateException(); |
| 85 | buf[end++] = (byte) s; |
| 86 | buf[end++] = (byte) (s >> 8); |
| 87 | } |
| 88 | |
| 89 | public final void writeInt(int s) |
| 90 | { |