From 5d8c114fb2f5de495224cb06b84d6c698126a887 Mon Sep 17 00:00:00 2001 From: brutzman <brutzman@nps.edu> Date: Wed, 18 Jul 2018 09:31:51 -0700 Subject: [PATCH] whitespace --- projects/TcpExample1/src/tcpexample1/TcpExample.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/TcpExample1/src/tcpexample1/TcpExample.java b/projects/TcpExample1/src/tcpexample1/TcpExample.java index 20613d1fe7..1641ecc9e6 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 client response was written by server TcpExample1"); // to remote client - System.out.println("This server 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 -- GitLab