Code cleanups.
[TD_SR.git] / TD2 / client / ThreadClientReceive.java
index a3f28d87f29a28a2f3701fbce7d501deb10522d9..74f09c3aff782035c325c2ee2944975479d0107f 100644 (file)
@@ -10,11 +10,11 @@ public class ThreadClientReceive implements Runnable {
     public void run() {
         try {
             boolean end = false;
-            //FIXME: Not exiting properly randomly from that loop!
+            //FIXME: not exiting properly randomly from that loop!
             while (!end) {
                 String rline = client.receiveMsg();
                 if (rline.equals(".")) {
-                                       end = true;
+                    end = true;
                 }
                 System.out.println(Thread.currentThread().getName() + " a recu " + rline);
             }