Skip to content
Snippets Groups Projects
Commit a3110d96 authored by brutzman's avatar brutzman
Browse files

TODO missing class was not checked in; comment out uncompilable code

parent 53984aa3
No related branches found
No related tags found
No related merge requests found
......@@ -24,9 +24,10 @@ public class YamashitaDeMouraTcpClient {
Socket socket = new Socket("localhost", 2317);
System.out.println("Socket created. Communication started...\n");
// Create entity
YamashitaDeMouraEntity entity = new YamashitaDeMouraEntity("Test Entity", 10, 20, 15);
// TODO missing class was not checked in
// // Create entity
// YamashitaDeMouraEntity entity = new YamashitaDeMouraEntity("Test Entity", 10, 20, 15);
String response = "";
int messageCount = 1;
......@@ -44,9 +45,12 @@ public class YamashitaDeMouraTcpClient {
response = "'Hi, I am the client and I request a connection.'\n";
break;
case 2:
response = "'Sending entity with name " + entity.getName() +
" and position (" + entity.getX() + ", " + entity.getY() +
", " + entity.getZ() + ").'\n";
response = "'Sending entity with name "
// TODO missing class was not checked in
// + entity.getName() +
// " and position (" + entity.getX() + ", " + entity.getY() +
// ", " + entity.getZ() + ").'\n"
;
break;
case 3:
response = "'Thanks!'\n";
......
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