...
Code Block | ||
---|---|---|
| ||
// This bug was found in jetty-6.1.3 BoundedThreadPool private final String _lock = "one"; synchronized(_lock) { /* ... */ } |
Noncompliant Code Example (Boxed primitive)
This noncompliant code example locks on a boxed Integer
object.
...