Apply suggestion from @michaelnebel

Co-authored-by: Michael Nebel <michaelnebel@github.com>
This commit is contained in:
Tamás Vajk
2025-06-26 11:34:43 +02:00
committed by GitHub
parent 60e726bdf2
commit 1e0dd2a935

View File

@@ -1,6 +1,6 @@
## Overview
According the Java documentation on `ScheduledThreadPoolExecutor`, it is not a good idea to set `corePoolSize` to zero, since doing so indicates the executor to keep 0 threads in its pool and the executor will serve no purpose.
According to the Java documentation on `ScheduledThreadPoolExecutor`, it is not a good idea to set `corePoolSize` to zero, since doing so indicates the executor to keep 0 threads in its pool and the executor will serve no purpose.
## Recommendation