resources.report.rules.findbugs.VO_VOLATILE_INCREMENT.html Maven / Gradle / Ivy
VO_VOLATILE_INCREMENT
VO: An increment to a volatile field isn't atomic (VO_VOLATILE_INCREMENT)
This code increments a volatile field. Increments of volatile fields aren't
atomic. If more than one thread is incrementing the field at the same time,
increments could be lost.