Bump upstreams
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / main / java / org / opendaylight / mdsal / binding / dom / adapter / query / DefaultQueryResultItem.java
index d9bfd8ce5151901c3a59648a916d4ef67acf8231..3b373c8b7186fa12d17a91e6d1c805766fb582c6 100644 (file)
@@ -41,10 +41,14 @@ final class DefaultQueryResultItem<T extends DataObject> implements QueryResult.
     private final DefaultQueryResult<T> result;
 
     @SuppressWarnings("unused")
-    @SuppressFBWarnings(value = "NP_STORE_INTO_NONNULL_FIELD", justification = "Ungrokked type annotation")
+    @SuppressFBWarnings(
+        value = { "NP_STORE_INTO_NONNULL_FIELD", "URF_UNREAD_FIELD" },
+        justification = "Ungrokked type annotation. https://github.com/spotbugs/spotbugs/issues/2749")
     private volatile @Nullable InstanceIdentifier<T> path = null;
     @SuppressWarnings("unused")
-    @SuppressFBWarnings(value = "NP_STORE_INTO_NONNULL_FIELD", justification = "Ungrokked type annotation")
+    @SuppressFBWarnings(
+        value = { "NP_STORE_INTO_NONNULL_FIELD", "URF_UNREAD_FIELD" },
+        justification = "Ungrokked type annotation. https://github.com/spotbugs/spotbugs/issues/2749")
     private volatile @Nullable T object = null;
 
     DefaultQueryResultItem(final DefaultQueryResult<T> result,