Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFCCCC
private Boolean done;
while (!this.done) {
  Thread.sleep(1000);
}

Compliant Solution

This compliant solution declares the flag volatile to ensure that updates to it are seen immediately across multiple threads.

...