8262430: doclint warnings in java.base module

Reviewed-by: alanb, chegar, dfuchs, lancea
This commit is contained in:
Jonathan Gibbons 2021-02-26 15:12:51 +00:00
parent 67b9e5a691
commit 3088e1e62e
2 changed files with 2 additions and 2 deletions

View file

@ -255,7 +255,6 @@ bytes (depending on the platform), it is important to ensure that the temporary
together with the filename used for the socket (currently a name similar to
{@code socket_1679697142}) does not exceed this limit. The following properties
can be used to control the selection of this directory:
<p>
<ul>
<li><p><b>{@systemProperty jdk.net.unixdomain.tmpdir}</b> This can be set as
a networking property in {@code conf/net.properties} If set, this specifies the

View file

@ -26,6 +26,7 @@
package java.nio.channels;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.NetPermission;
import java.net.ProtocolFamily;
import java.net.ServerSocket;
@ -234,7 +235,7 @@ public abstract class ServerSocketChannel
* <p> The {@code backlog} parameter is the maximum number of pending
* connections on the socket. Its exact semantics are implementation specific.
* In particular, an implementation may impose a maximum length or may choose
* to ignore the parameter altogther. If the {@code backlog} parameter has
* to ignore the parameter altogether. If the {@code backlog} parameter has
* the value {@code 0}, or a negative value, then an implementation specific
* default is used.
*