()
| 91 | |
| 92 | |
| 93 | @Override |
| 94 | public CharChunk clone() throws CloneNotSupportedException { |
| 95 | CharChunk result = (CharChunk) super.clone(); |
| 96 | if (buff != null) { |
| 97 | result.buff = buff.clone(); |
| 98 | } |
| 99 | result.in = null; |
| 100 | result.out = null; |
| 101 | return result; |
| 102 | } |
| 103 | |
| 104 | |
| 105 | // -------------------- Setup -------------------- |