Bump upstreams to SNAPSHOTs
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / transactions / BatchedExistenceCheck.java
index 001793033cbecc274c28321244b550c61e514a3e..7800c5e929d4ee492663975e62bb6d163e53f614 100644 (file)
@@ -73,8 +73,6 @@ final class BatchedExistenceCheck {
         }
     }
 
-    @SuppressFBWarnings(value = "UPM_UNCALLED_PRIVATE_METHOD",
-        justification = "https://github.com/spotbugs/spotbugs/issues/811")
     private void complete(final YangInstanceIdentifier childPath, final boolean present) {
         final int count = UPDATER.decrementAndGet(this);
         if (present) {
@@ -84,8 +82,6 @@ final class BatchedExistenceCheck {
         }
     }
 
-    @SuppressFBWarnings(value = "UPM_UNCALLED_PRIVATE_METHOD",
-        justification = "https://github.com/spotbugs/spotbugs/issues/811")
     private void complete(final YangInstanceIdentifier childPath, final ReadFailedException cause) {
         UPDATER.decrementAndGet(this);
         future.set(new SimpleImmutableEntry<>(childPath, cause));