Do some refactoring to prevent code duplication; change string sequence generation...
[pingpong.git] / Code / Projects / SmartPlugDetector / src / main / java / edu / uci / iotproject / Conversation.java
index 28515e3ae981fffe6b9b33c4b19c0cc3d73bba78..73d165d00d3c036d67a43aebe2b5ec1b774ecfd0 100644 (file)
@@ -562,17 +562,16 @@ public class Conversation {
         CLIENT_TO_SERVER {
             @Override
             public String toCompactString() {
-                return "C->S";
+                return "*";
             }
         },
         SERVER_TO_CLIENT {
             @Override
             public String toCompactString() {
-                return "S->C";
+                return "";
             }
         };
 
-
         /**
          * Get a compact string representation of this {@code Direction}.
          * @return a compact string representation of this {@code Direction}.