Small content update

This commit is contained in:
Chris Qi
2020-11-18 20:22:37 +00:00
parent 287b9b838b
commit 600256bde2
3 changed files with 7 additions and 1 deletions

View File

@ -613,6 +613,7 @@ public static void main(String[] args) {
WaitNotifyExample example = new WaitNotifyExample();
executorService.execute(() -> example.after());
executorService.execute(() -> example.before());
executorService.shutdown();
}
```