mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-19 19:35:02 +00:00
Fix whitespace on docs for read/writeArray methods
This commit is contained in:
parent
1d5d246e32
commit
4cffe8f3bd
@ -694,9 +694,9 @@ public abstract class StreamInput extends InputStream {
|
|||||||
* assumed that the stream first contains a variable-length integer representing the size of the array, and then contains that many
|
* assumed that the stream first contains a variable-length integer representing the size of the array, and then contains that many
|
||||||
* elements that can be read from the stream.
|
* elements that can be read from the stream.
|
||||||
*
|
*
|
||||||
* @param reader the reader used to read individual elements
|
* @param reader the reader used to read individual elements
|
||||||
* @param arraySupplier a supplier used to construct a new array
|
* @param arraySupplier a supplier used to construct a new array
|
||||||
* @param <T> the type of the elements of the array
|
* @param <T> the type of the elements of the array
|
||||||
* @return an array read from the stream
|
* @return an array read from the stream
|
||||||
* @throws IOException if an I/O exception occurs while reading the array
|
* @throws IOException if an I/O exception occurs while reading the array
|
||||||
*/
|
*/
|
||||||
|
@ -713,8 +713,8 @@ public abstract class StreamOutput extends OutputStream {
|
|||||||
* integer is first written to the stream, and then the elements of the array are written to the stream.
|
* integer is first written to the stream, and then the elements of the array are written to the stream.
|
||||||
*
|
*
|
||||||
* @param writer the writer used to write individual elements
|
* @param writer the writer used to write individual elements
|
||||||
* @param array the array
|
* @param array the array
|
||||||
* @param <T> the type of the elements of the array
|
* @param <T> the type of the elements of the array
|
||||||
* @throws IOException if an I/O exception occurs while writing the array
|
* @throws IOException if an I/O exception occurs while writing the array
|
||||||
*/
|
*/
|
||||||
public <T> void writeArray(final Writer<T> writer, final T[] array) throws IOException {
|
public <T> void writeArray(final Writer<T> writer, final T[] array) throws IOException {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user