Skip to content

Commit 7e20fe3

Browse files
committedOct 12, 2021
Improve javadoc
1 parent e470f96 commit 7e20fe3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎src/java.base/share/classes/java/net/DatagramSocket.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -671,16 +671,16 @@ public void send(DatagramPacket p) throws IOException {
671671
* the data received. The datagram packet also contains the sender's
672672
* IP address, and the port number on the sender's machine.
673673
* <p>
674-
* This method blocks until a datagram is received. The
675-
* {@code length} field of the datagram packet object contains
676-
* the length of the received message. If the message is longer than
677-
* the packet's length, the message is truncated.
678-
* <p>
674+
* This method blocks until a datagram is received.
679675
* For the system-default socket implementation at least, if a
680676
* {@linkplain Thread#isVirtual() virtual thread} blocked in {@code receive}
681677
* is {@linkplain Thread#interrupt() interrupted} then the socket is closed
682678
* and {@link SocketException} is thrown with the interrupt status set.
683679
* <p>
680+
* The {@code length} field of the datagram packet object contains
681+
* the length of the received message. If the message is longer than
682+
* the packet's length, the message is truncated.
683+
* <p>
684684
* If there is a security manager, and the socket is not currently
685685
* connected to a remote address, a packet cannot be received if the
686686
* security manager's {@code checkAccept} method does not allow it.

0 commit comments

Comments
 (0)
Please sign in to comment.