TD2: Check for message text emptyness.
[TD_SR.git] / TD2 / IHM / ThreadIHMSend.java
index f8077c968fdf03ed6dc4098fc04670180418d282..5113989da7208d3ba9e9ee222bb3094239a993cf 100644 (file)
@@ -17,7 +17,7 @@ public class ThreadIHMSend implements Runnable {
                 if (line.equals(".")) {
                     end = true;
                 }
-                if (line.length() != 0) {
+                if (!line.isEmpty()) {
                     client.sendMsg(line);
                     System.out.println(Thread.currentThread().getName() + " a envoye " + line);
                 }