Skip to content
Snippets Groups Projects
Commit ac7a4485 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

javadoc adjustments

parent fa88382e
No related branches found
No related tags found
No related merge requests found
......@@ -13,12 +13,12 @@ import java.net.Socket;
*/
public class RobinsonTCP3exServer {
/** ServerSocket waits for a connection from a client.Notice that it is outside the loop;
* ServerSocket needs to be made only once.
* @param args command-line arguments */
public static void main(String[] args) {
try {
// ServerSocket waits for a connection from a client.
// Notice that it is outside the loop; ServerSocket
// needs to be made only once.
System.out.println(RobinsonTCP3exServer.class.getName() + " has started..."); // it helps debugging to put this on console first
ServerSocket serverSocket = new ServerSocket(2317);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment