Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JDK-8262430: doclint warnings in java.base module #2734

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -255,7 +255,6 @@ <H2>Unix domain sockets</H2>
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
Original file line number Diff line number Diff line change
@@ -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 final ServerSocketChannel bind(SocketAddress local)
* <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.
*