Change getIsOnlineFuture() return type
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / OpenFlowPluginProviderImpl.java
index 95246cc6266b1ad26315c01b8c68198a9c1872c9..b841e72c8229b7c34619cec8182bf0566f48622a 100644 (file)
@@ -215,9 +215,9 @@ public final class OpenFlowPluginProviderImpl
             // Set handler of incoming connections and start switch connection provider
             switchConnectionProvider.setSwitchConnectionHandler(connectionManager);
             return switchConnectionProvider.startup();
-        }).collect(Collectors.toSet())), new FutureCallback<List<Boolean>>() {
+        }).collect(Collectors.toSet())), new FutureCallback<List<Void>>() {
             @Override
-            public void onSuccess(final List<Boolean> result) {
+            public void onSuccess(final List<Void> result) {
                 LOG.info("All switchConnectionProviders are up and running ({}).", result.size());
                 diagStatusProvider.reportStatus(ServiceState.OPERATIONAL);
                 fullyStarted.set(null);