File tree 2 files changed +4
-4
lines changed
core/src/main/java/org/elasticsearch/common/io/stream
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -694,9 +694,9 @@ public byte[] readByteArray() throws IOException {
694
694
* assumed that the stream first contains a variable-length integer representing the size of the array, and then contains that many
695
695
* elements that can be read from the stream.
696
696
*
697
- * @param reader the reader used to read individual elements
697
+ * @param reader the reader used to read individual elements
698
698
* @param arraySupplier a supplier used to construct a new array
699
- * @param <T> the type of the elements of the array
699
+ * @param <T> the type of the elements of the array
700
700
* @return an array read from the stream
701
701
* @throws IOException if an I/O exception occurs while reading the array
702
702
*/
Original file line number Diff line number Diff line change @@ -713,8 +713,8 @@ public void writeDoubleArray(double[] values) throws IOException {
713
713
* integer is first written to the stream, and then the elements of the array are written to the stream.
714
714
*
715
715
* @param writer the writer used to write individual elements
716
- * @param array the array
717
- * @param <T> the type of the elements of the array
716
+ * @param array the array
717
+ * @param <T> the type of the elements of the array
718
718
* @throws IOException if an I/O exception occurs while writing the array
719
719
*/
720
720
public <T > void writeArray (final Writer <T > writer , final T [] array ) throws IOException {
You can’t perform that action at this time.
0 commit comments