@GuardedBy that are not guarded by an appropriate synchronization structure.
Example:
@GuardedBy("this")
void x() {
notify();
}
void y() {
x(); // unguarded method call
}
Supported @GuardedBy annotations are:
net.jcip.annotations.GuardedByjavax.annotation.concurrent.GuardedByorg.apache.http.annotation.GuardedBycom.android.annotations.concurrency.GuardedByandroidx.annotation.GuardedBycom.google.errorprone.annotations.concurrent.GuardedBy