Fix findbugs violations in netconf
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / actors / ReadAdapter.java
index 3d881e65def18fd6ff0a15c21064922e8a2bee45..6b79f621257ad0abcc2a7d19996b41db4ce86325 100644 (file)
@@ -56,7 +56,7 @@ class ReadAdapter {
         Futures.addCallback(read, new FutureCallback<Optional<NormalizedNode<?, ?>>>() {
 
             @Override
-            public void onSuccess(final Optional<NormalizedNode<?, ?>> result) {
+            public void onSuccess(@Nonnull final Optional<NormalizedNode<?, ?>> result) {
                 if (!result.isPresent()) {
                     sender.tell(new EmptyReadResponse(), self);
                     return;