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