This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push: new 897eb9f4 Javadoc: Close HTML paragraph tag 897eb9f4 is described below commit 897eb9f44800410e49acc9bcff680e654839563b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Nov 29 07:20:59 2024 -0500 Javadoc: Close HTML paragraph tag Format Javadoc class comment --- .../commons/net/daytime/MockDaytimeTCPServer.java | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/test/java/org/apache/commons/net/daytime/MockDaytimeTCPServer.java b/src/test/java/org/apache/commons/net/daytime/MockDaytimeTCPServer.java index 858175d9..28ec47d8 100644 --- a/src/test/java/org/apache/commons/net/daytime/MockDaytimeTCPServer.java +++ b/src/test/java/org/apache/commons/net/daytime/MockDaytimeTCPServer.java @@ -33,17 +33,20 @@ import java.util.concurrent.TimeUnit; import org.apache.commons.net.MockTcpServer; /** - * The MockDaytimeTCPServer class is a simple TCP implementation of a server for the Daytime Protocol described in <a href="https://datatracker.ietf.org/doc/html/rfc867">RFC 867</a>. + * The MockDaytimeTCPServer class is a simple TCP implementation of a server for the Daytime Protocol described in + * <a href="https://datatracker.ietf.org/doc/html/rfc867">RFC 867</a>. * <p> - * Listens for TCP socket connections on the daytime protocol port and writes the local day time to socket {@code outputStream} as {@link String} - * in format {@code EEEE, MMMM d, uuuu, HH:mm:ss-z}. - * See the <a href="https://datatracker.ietf.org/doc/html/rfc867"> RFC-867 spec </a> for more details. + * Listens for TCP socket connections on the daytime protocol port and writes the local day time to socket {@code outputStream} as {@link String} in format + * {@code EEEE, MMMM d, uuuu, HH:mm:ss-z}. See the <a href="https://datatracker.ietf.org/doc/html/rfc867"> RFC-867 spec </a> for more details. + * </p> * <p> + * This implementation uses {@link MockDaytimeTCPServer#enqueue(Clock)} and {@link BlockingQueue<Clock>} to queue next {@link Clock} that will be used to obtain + * and write daytime data into {@code clientSocket}. + * </p> * <p> - * This implementation uses {@link MockDaytimeTCPServer#enqueue(Clock)} and {@link BlockingQueue<Clock>} to queue next {@link Clock} that will be used to obtain and - * write daytime data into {@code clientSocket}. + * NOTE: this is for <strong>debugging and testing purposes only</strong> and not meant to be run as a reliable server. * </p> - * <p>NOTE: this is for <strong>debugging and testing purposes only</strong> and not meant to be run as a reliable server.</p> + * * @see MockTcpServer * @see DaytimeTCPClientTest DaytimeTCPClientTest (for example usage in tests) */