(char[] chars, int offset, int length)
| 159 | } |
| 160 | |
| 161 | @Override public void write(char[] chars, int offset, int length) throws IOException { |
| 162 | currentWrite.chars = chars; |
| 163 | appendable.append(currentWrite, offset, offset + length); |
| 164 | } |
| 165 | |
| 166 | @Override public void write(int i) throws IOException { |
| 167 | appendable.append((char) i); |