15 lines
255 B
Plaintext
15 lines
255 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
fun do() {
|
||
|
|
||
|
val stpe1 = ScheduledThreadPoolExecutor(0) // Noncompliant
|
||
|
|
||
|
val stpe2 = ScheduledThreadPoolExecutor(POOL_SIZE)
|
||
|
stpe2.corePoolSize = 0 // Noncompliant
|
||
|
|
||
|
...
|
||
|
----
|