Returns a new ByteArrayDataOutput instance with a default size.
()
| 415 | * Returns a new {@link ByteArrayDataOutput} instance with a default size. |
| 416 | */ |
| 417 | public static ByteArrayDataOutput newDataOutput() { |
| 418 | return newDataOutput(new ByteArrayOutputStream()); |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * Returns a new {@link ByteArrayDataOutput} instance sized to hold {@code size} bytes before |
nothing calls this directly
no test coverage detected