From 24bd3ee367559dcf2fc5d0c9ba67a032791c3701 Mon Sep 17 00:00:00 2001
From: markm <markm@MarkAlienware2.attlocal.net>
Date: Tue, 27 Aug 2024 11:15:56 -0700
Subject: [PATCH] Re fixed java docs

---
 .../homework2/Matiski/Matiski2Client.java                 | 8 +++-----
 .../homework2/Matiski/Matiski2HandlerThread.java          | 8 +++-----
 .../homework2/Matiski/Matiski2Server.java                 | 2 --
 3 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java
index 73f8755fa0..f712e71dd5 100644
--- a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java
+++ b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Client.java
@@ -4,14 +4,12 @@ import java.io.*;
 import java.net.*;
 
 /**
- * This client program establishes a socket connection to the {@link TcpExamples.TcpExample4DispatchServer},
+ * This client program establishes a socket connection to the ,
  * then checks how long it takes to read the single line it expects as a server response.
  * The modification I have added is it checks for a password from the server.  And it matches it says success and disconnects
- * No fancy footwork here, it is pretty simple and similar to {@link TcpExamples.TcpExample3Client}.
+ * No fancy footwork here, it is pretty simple and similar to  TcpExamples.TcpExample3Client}.
  * borrowed code from class
  * 
- * @see TcpExample4DispatchServer
- * @see TcpExample4HandlerThread
  *
  * @see <a href="../../../src/TcpExamples/TcpExample4TerminalLog.txt" target="blank">TcpExample4TerminalLog.txt</a>
  * @see <a href="../../../src/TcpExamples/TcpExample4SequenceDiagram.png" target="blank">TcpExample4SequenceDiagram.png</a>
@@ -20,7 +18,7 @@ import java.net.*;
  * @author Don McGregor
  * @author Don Brutzman
  * @author MV3500 class
- * @MarkMM
+ * @author MarkMM
  */
 public class Matiski2Client
 {
diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java
index 7351c34a37..beb348bd1d 100644
--- a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java
+++ b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2HandlerThread.java
@@ -5,18 +5,16 @@ import java.net.*;
 
 /**
  * <p>
- * This utility class supports the {@link TcpExamples.TcpExample4DispatchServer} program,
+ * This utility class supports the  TcpExamples.TcpExample4DispatchServer program,
  * handling all programming logic needed for a new socket connection
  * to run in a thread of its own. This is the server
  * portion as well, so we artificially invent what happens
  * if the server can't respond to a connection for several seconds.
  * </p>
  * <p>
- * Warning: do not run this class!  It is created and used automatically by {@link TcpExamples.TcpExample4DispatchServer} at run time.
+ * Warning: do not run this class!  It is created and used automatically by  TcpExamples.TcpExample4DispatchServer} at run time.
  * </p>
- * 
- * @see TcpExample4Client
- * @see TcpExample4DispatchServer
+ * see examples
  *
  * @see <a href="../../../src/TcpExamples/TcpExample4TerminalLog.txt" target="blank">TcpExample4TerminalLog.txt</a>
  * @see <a href="../../../src/TcpExamples/TcpExample4SequenceDiagram.png" target="blank">TcpExample4SequenceDiagram.png</a>
diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java
index aedb8947b9..2d4360b312 100644
--- a/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java
+++ b/assignments/src/MV3500Cohort2024JulySeptember/homework2/Matiski/Matiski2Server.java
@@ -9,8 +9,6 @@ import java.net.*;
  * This advanced technique is often used in high=performance high=capacity server programs.
  * 
  * 
- * @see TcpExample4Client
- * @see Matiski2HandlerThread
  *
  * @see <a href="../../../src/TcpExamples/TcpExample4TerminalLog.txt" target="blank">TcpExample4TerminalLog.txt</a>
  * @see <a href="../../../src/TcpExamples/TcpExample4SequenceDiagram.png" target="blank">TcpExample4SequenceDiagram.png</a>
-- 
GitLab