Code cleanups.
[TD_SR.git] / TD2 / client / ThreadClientSend.java
index 9d40e0d6a7effddb01cd3e585fc7a1db0caabd33..42fe7dfd13c723a5cac6c8e09bbfe4cbf7db611c 100644 (file)
@@ -14,26 +14,26 @@ public class ThreadClientSend implements Runnable {
             boolean end = false;
                        while (!end) {
                                String line = userInput.readLine();
-                               if (line.equals(".")) {
+                if (line.equals(".")) {
                     end = true;
                 }
                 client.sendMsg(line);
                 System.out.println(Thread.currentThread().getName() + " a envoye " + line);
             }
-           }
+        }
         catch (IOException e) {
             System.err.println("IOException: " + e);
             e.printStackTrace();
         }
         finally {
             if (userInput != null) {
-                               try {
-                                       userInput.close();
-                               }
-                               catch (IOException e) {
-                                       System.err.println("IOException: " + e);
-                               }
-                       }
+                try {
+                    userInput.close();
+                }
+                catch (IOException e) {
+                    System.err.println("IOException: " + e);
+                }
+            }
         }
     }
 }