Versions Compared

Key

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

...

Code Block
bgColor#FFcccc
class Unsafe {
  private volatile int[] arr = new int[20];
  // other code...
}
arr[2] = 10;

Compliant Solution

...

Code Block
bgColor#ccccff
class Safe {
  AtomicIntegerArray aia = new AtomicIntegerArray(5);
  // otherOther code
}
aia.set(1, 10);

Risk Assessment

...