Bump upstreams to SNAPSHOTs
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / netconf / sal / restconf / impl / BatchedExistenceCheck.java
index 8842ddb078825429fcd0f585a7226e665516a64c..4efc6a85c1b86337542a9cefd8e81af70a4d74f7 100644 (file)
@@ -74,8 +74,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) {
@@ -85,8 +83,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));