ben-manes / caffeine

Elements accessed from volatile reference to an array are not volatile JAVA-E0027
Bug risk
Major
1 occurrence in this check
 96  static final int ATTEMPTS = 3;
 97
 98  /** Table of buffers. When non-null, size is a power of 2. */
 99  volatile Buffer<E> @Nullable[] table;100
101  /** Spinlock (locked via CAS) used when resizing and/or creating Buffers. */
102  volatile int tableBusy;