From a3110d9633e0229bcd309fec1f6e6516efa7fdfb Mon Sep 17 00:00:00 2001
From: brutzman <brutzman@DESKTOP-2S09UKA>
Date: Sat, 6 Jul 2019 11:08:22 -0700
Subject: [PATCH] TODO missing class was not checked in; comment out
 uncompilable code

---
 .../homework1/YamashitaDeMouraTcpClient.java     | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/assignments/src/MV3500Cohort2018JanuaryMarch/homework1/YamashitaDeMouraTcpClient.java b/assignments/src/MV3500Cohort2018JanuaryMarch/homework1/YamashitaDeMouraTcpClient.java
index f443901647..0e58f3dd9a 100644
--- a/assignments/src/MV3500Cohort2018JanuaryMarch/homework1/YamashitaDeMouraTcpClient.java
+++ b/assignments/src/MV3500Cohort2018JanuaryMarch/homework1/YamashitaDeMouraTcpClient.java
@@ -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";
-- 
GitLab