diff --git a/assignments/src/MV3500Cohort2021JulySeptember/homework2/Fisher/FisherServer.java b/assignments/src/MV3500Cohort2021JulySeptember/homework2/Fisher/FisherServer.java index 164e32a072be7227420787be72028f85fb2f54c6..c6b16ee66f6232df0f0735a47b0f92d762a3a038 100644 --- a/assignments/src/MV3500Cohort2021JulySeptember/homework2/Fisher/FisherServer.java +++ b/assignments/src/MV3500Cohort2021JulySeptember/homework2/Fisher/FisherServer.java @@ -59,7 +59,7 @@ public class FisherServer { // Made a loop counter for server to stop after 10 pings with client while (serverLoopCount <= 10) { - // block until connected to a client + // block until connected to the client try ( Socket clientConnectionSocket = serverSocket.accept()) { // Now hook everything up (i.e. set up the streams), Java style: