Fix findbugs violations in netconf
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / actors / NetconfNodeActor.java
index 89547421c7c50d352ec7f9c4e660709631592f01..3a3fad9ce46a4628a6b8d8b6d717462e02dd2399 100644 (file)
@@ -259,7 +259,7 @@ public final class NetconfNodeActor extends UntypedActor {
 
         Futures.addCallback(remoteSchemaContext, new FutureCallback<SchemaContext>() {
             @Override
-            public void onSuccess(final SchemaContext result) {
+            public void onSuccess(@Nonnull final SchemaContext result) {
                 LOG.info("{}: Schema context resolved: {}", id, result.getModules());
                 slaveSalManager.registerSlaveMountPoint(result, deviceRpcService, masterReference);
             }