Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added back CON04-J xref

...

Code Block
bgColor#ccccff
private final Object lock = new Object();

synchronized(lock) {
// ...
}

For more information on using an Object as a lock, see CON04-J. Synchronize using an internal private final lock object.

Noncompliant Code Example (interned String object)

...