Bump odlparent to 13.0.9
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / AbstractRegistration.java
index ae2677b0e2b5d363fe7c578dde448579907cfe2e..aa2d97a99989e2689554c02ab549e62302a55135 100644 (file)
@@ -9,6 +9,7 @@ package org.opendaylight.yangtools.concepts;
 
 import com.google.common.base.MoreObjects;
 import com.google.common.base.MoreObjects.ToStringHelper;
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.lang.invoke.MethodHandles;
 import java.lang.invoke.VarHandle;
 
@@ -21,6 +22,7 @@ public abstract class AbstractRegistration implements Registration {
 
     // All access needs to go through this handle
     @SuppressWarnings("unused")
+    @SuppressFBWarnings(value = "UUF_UNUSED_FIELD", justification = "https://github.com/spotbugs/spotbugs/issues/2749")
     private volatile byte closed;
 
     static {