Code cleanup.
[TD_SR.git] / TD1 / exo3 / Producteur.java
index f3cc123ac18ba582eba727a017023a0e29b176ee..732fafa22097c4a0e83b0cec23984c0b1f1a5da2 100644 (file)
@@ -23,13 +23,13 @@ public class Producteur implements Runnable {
        public void run() {
                while (true) {
                        buffer.depose(new Integer(val));
-                       System.out.println (Thread.currentThread().getName() +  " a depose " + val);
+                       System.out.println(Thread.currentThread().getName() + " a depose " + val);
                        val++;
                        try {
                                Thread.sleep(ThreadLocalRandom.current().nextInt(101));
                        }
                        catch (InterruptedException e) {
-                               System.out.println("InterruptedException: " + e);
+                               System.err.println("InterruptedException: " + e);
                        }
                }
        }