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 3892fd7b Javadoc
3892fd7b is described below
commit 3892fd7b21a2b2bd7180d14b69f2541904c4f6a6
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Nov 7 21:32:00 2025 -0500
Javadoc
---
src/test/java/org/apache/commons/net/MockTcpServer.java | 2 +-
src/test/java/org/apache/commons/net/time/TimeTestSimpleServer.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/test/java/org/apache/commons/net/MockTcpServer.java
b/src/test/java/org/apache/commons/net/MockTcpServer.java
index cc18be19..63d6f5f6 100644
--- a/src/test/java/org/apache/commons/net/MockTcpServer.java
+++ b/src/test/java/org/apache/commons/net/MockTcpServer.java
@@ -42,7 +42,7 @@ import java.net.Socket;
* }
* }
* </code>
- * <p>NOTE: this is for <B>debugging and testing purposes only</B> 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 org.apache.commons.net.daytime.MockDaytimeTCPServer
MockDaytimeTCPServer (for example Daytime Protocol implementation)
*/
public abstract class MockTcpServer implements Runnable, Closeable {
diff --git
a/src/test/java/org/apache/commons/net/time/TimeTestSimpleServer.java
b/src/test/java/org/apache/commons/net/time/TimeTestSimpleServer.java
index 3c85e7bf..dc874ecf 100644
--- a/src/test/java/org/apache/commons/net/time/TimeTestSimpleServer.java
+++ b/src/test/java/org/apache/commons/net/time/TimeTestSimpleServer.java
@@ -30,7 +30,7 @@ import org.apache.commons.io.IOUtils;
* Listens for TCP socket connections on the time protocol port and writes the
local time to socket outputStream as 32-bit integer of seconds since midnight on
* 1 January 1900 GMT. See <A
HREF="ftp://ftp.rfc-editor.org/in-notes/rfc868.txt"> the spec </A> for details.
* <p>
- * Note this is for <B>debugging purposes only</B> and not meant to be run as
a realiable time service.
+ * Note this is for <strong>debugging purposes only</strong> and not meant to
be run as a realiable time service.
*/
public class TimeTestSimpleServer implements Runnable {