remove sysout

This commit is contained in:
Loredana Crusoveanu 2018-04-14 18:17:25 +03:00
parent f79236b433
commit a60f86ddee
1 changed files with 0 additions and 1 deletions

View File

@ -13,7 +13,6 @@ public class SharedObjectManualTest {
Thread writer = new Thread(() -> sharedObject.increamentCount());
writer.start();
Thread.sleep(100);
System.out.println(sharedObject.getCount());
Thread readerOne = new Thread(() -> {
int valueReadByThread2 = sharedObject.getCount();