Bump odlparent to 13.0.9
[yangtools.git] / common / util / src / main / java / org / opendaylight / yangtools / util / ConcurrentDurationStatisticsTracker.java
index 7e7283842bf326e8d1ff80f48ed077be81fc220c..00a463ab456e21d989b7e109ce7ec9b05ae0e618 100644 (file)
@@ -8,6 +8,7 @@
 package org.opendaylight.yangtools.util;
 
 import com.google.common.primitives.UnsignedLong;
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.lang.invoke.MethodHandles;
 import java.lang.invoke.VarHandle;
 
@@ -37,7 +38,9 @@ class ConcurrentDurationStatisticsTracker extends DurationStatisticsTracker {
 
     private volatile long sum;
     private volatile long count;
+    @SuppressFBWarnings(value = "UWF_NULL_FIELD", justification = "https://github.com/spotbugs/spotbugs/issues/2749")
     private volatile DurationWithTime longest;
+    @SuppressFBWarnings(value = "UWF_NULL_FIELD", justification = "https://github.com/spotbugs/spotbugs/issues/2749")
     private volatile DurationWithTime shortest;
 
     ConcurrentDurationStatisticsTracker() {