Update MRI projects for Aluminium
[openflowplugin.git] / applications / southbound-cli / src / main / java / org / opendaylight / openflowplugin / applications / southboundcli / cli / ReconciliationCount.java
index d2b783d8aa85de134e4516450374d0a752d1fd66..8290d799699d308a744948c41910686e34f0b3cd 100644 (file)
@@ -8,8 +8,8 @@
 
 package org.opendaylight.openflowplugin.applications.southboundcli.cli;
 
+import java.util.Collection;
 import java.util.Formatter;
-import java.util.List;
 import org.apache.karaf.shell.commands.Command;
 import org.apache.karaf.shell.console.OsgiCommandSupport;
 import org.opendaylight.mdsal.binding.api.DataBroker;
@@ -29,7 +29,7 @@ public class ReconciliationCount extends OsgiCommandSupport {
     @SuppressWarnings("checkstyle:RegexpSinglelineJava")
     @Override
     protected Object doExecute() {
-        List<ReconcileCounter> result = ShellUtil.getReconcileCount(dataBroker);
+        Collection<ReconcileCounter> result = ShellUtil.getReconcileCount(dataBroker);
         if (result.isEmpty()) {
             System.out.println("Reconciliation count not yet available for openflow nodes.");
         } else {