TD1: Refactor the client side code.
[TD_SR.git] / TD1 / exo3 / Producteur.java
index 0ad13c3e2490ffc08eee619011e8809b68d2b02b..36b67a316b4153b29d7a2c69b08d87823f7ef56f 100644 (file)
@@ -23,7 +23,7 @@ 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));