Returns a new ByteArrayDataOutput instance with a default size.
()
| 432 | |
| 433 | |
| 434 | public static ByteArrayDataOutput newDataOutput() { |
| 435 | return newDataOutput(new ByteArrayOutputStream()); |
| 436 | } |
| 437 | |
| 438 | /** |
| 439 | * Returns a new {@link ByteArrayDataOutput} instance sized to hold {@code size} bytes before |
nothing calls this directly
no test coverage detected