Creates a new CharBuffer for buffering reads or writes.
()
| 52 | * Creates a new {@code CharBuffer} for buffering reads or writes. |
| 53 | */ |
| 54 | static CharBuffer createBuffer() { |
| 55 | return CharBuffer.allocate(0x800); // 2K chars (4K bytes) |
| 56 | } |
| 57 | |
| 58 | private CharStreams() {} |
| 59 |
no outgoing calls
no test coverage detected