diff --git a/README.md b/README.md index b4b45731efcdf1af7420fc8b840882cb66034eb3..95b925c558ec1352ec6596e3b3316f679558ffcd 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Key course sites: References and Resources: * [GitLab Flavored Markdown (GFM)](https://docs.gitlab.com/ee/user/markdown.html) * [Java Archive (.jar)](https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html) for sharable/runnable software libraries -* [Java SE JDK 8 download](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (not JDK 9) +* [Java SE JDK 8 download](http://www.oracle.com/technetwork/java/javase/downloads/index.html) (not JDK 9 or 10) * [Netbeans 8.2](http://www.netbeans.org) and [Using Git Support in NetBeans IDE](https://netbeans.org/kb/docs/ide/git.html) and [Video of Cloning a Git Repository Using NetBeans IDE](https://netbeans.org/kb/docs/ide/git_nb_ssh_screencast.html) * [Open-DIS Repository](https://github.com/open-dis) and [Distributed Interactive Simulation: The Missing Handbook](https://github.com/open-dis/DISTutorial/blob/master/README.md) diff --git a/projects/TcpExample1/src/tcpexample1/TcpExample.java b/projects/TcpExample1/src/tcpexample1/TcpExample.java index 9331507fcd37231ca44211fe9c9126b06fb35b8f..20613d1fe71e94fe51e072d448f9b7e1b38f6cf4 100644 --- a/projects/TcpExample1/src/tcpexample1/TcpExample.java +++ b/projects/TcpExample1/src/tcpexample1/TcpExample.java @@ -48,8 +48,8 @@ public class TcpExample OutputStream os = clientConnection.getOutputStream(); PrintStream ps = new PrintStream(os); - ps.println("This response was written by server TcpExample1"); // to remote client - System.out.println("This response was written by server TcpExample1"); // to server console + ps.println("This client response was written by server TcpExample1"); // to remote client + System.out.println("This server response was written by server TcpExample1"); // to server console // "flush()" in important in that it forces a write // across what is in fact a slow connection