Skip to content

Commit 7cc461b

Browse files
authored
Fixing javadoc build errors (#8173)
Signed-off-by: Joakim Erdfelt <[email protected]>
1 parent d63569d commit 7cc461b

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

jetty-io/src/main/java/org/eclipse/jetty/io/ArrayByteBufferPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* <p>Given a capacity {@code factor} of 1024, the first array element holds a queue of ByteBuffers
3535
* each of capacity 1024, the second array element holds a queue of ByteBuffers each of capacity
3636
* 2048, and so on.</p>
37-
* The {@code maxHeapMemory} and {@code maxDirectMemory} default heuristic is to use {@link Runtime#maxMemory()}
37+
* <p>The {@code maxHeapMemory} and {@code maxDirectMemory} default heuristic is to use {@link Runtime#maxMemory()}
3838
* divided by 4.</p>
3939
*/
4040
@ManagedObject

jetty-io/src/main/java/org/eclipse/jetty/io/ArrayRetainableByteBufferPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* <p>Given a capacity {@code factor} of 1024, the first array element holds a Pool of RetainableByteBuffers
3737
* each of capacity 1024, the second array element holds a Pool of RetainableByteBuffers each of capacity
3838
* 2048, and so on.</p>
39-
* The {@code maxHeapMemory} and {@code maxDirectMemory} default heuristic is to use {@link Runtime#maxMemory()}
39+
* <p>The {@code maxHeapMemory} and {@code maxDirectMemory} default heuristic is to use {@link Runtime#maxMemory()}
4040
* divided by 4.</p>
4141
*/
4242
@ManagedObject

jetty-io/src/main/java/org/eclipse/jetty/io/ClientConnector.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,7 @@ public boolean isIntrinsicallySecure(ClientConnector clientConnector, SocketAddr
624624
* {@link SocketChannel#connect(SocketAddress)}, as this is done later,
625625
* after configuring the socket, by the {@link ClientConnector} implementation.</p>
626626
*
627+
* @param clientConnector the client connector requesting channel with associated address
627628
* @param address the destination socket address, typically specified in a URI
628629
* @param context the context to create the new socket channel
629630
* @return a new {@link SocketChannel} with an associated {@link SocketAddress} to connect to

jetty-io/src/main/java/org/eclipse/jetty/io/WriteFlusher.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ public void completeWrite()
408408
/**
409409
* Flushes the buffers iteratively until no progress is made.
410410
*
411+
* @param address the datagram channel to send the buffers to (used by QUIC and HTTP/3)
411412
* @param buffers The buffers to flush
412413
* @return The unflushed buffers, or null if all flushed
413414
* @throws IOException if unable to flush

0 commit comments

Comments
 (0)