Skip to content
Snippets Groups Projects
Commit ad7be47b authored by adfis's avatar adfis
Browse files

Fisher Homework 2 - Draft

parent 267f03dc
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ public class FisherClient {
OutputStream os;
PrintStream ps;
String serverMessage;
int clientLoopCount = 0;
int clientLoopCount = 1;
try {
System.out.println("FisherClient creating socket...");
......
package MV3500Cohort2021JulySeptember.homework2.Fisher;
import static com.google.common.base.CharMatcher.is;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
......@@ -51,7 +50,7 @@ public class FisherServer {
InputStream is;
InputStreamReader isr;
BufferedReader br;
int serverLoopCount = 0;
int serverLoopCount = 1;
// Server is up and waiting (i.e. "blocked" or paused)
......
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