Update MRI projects for Aluminium
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / registry / flow / DeviceFlowRegistryImplTest.java
index b661294a2f8b66210dfcabb4cc70d188850c9476..01751cf99ae8c76dcdfed0691a2008fbc8a09985 100644 (file)
@@ -126,23 +126,19 @@ public class DeviceFlowRegistryImplTest {
 
         fillRegistry(path, null);
 
-        fillRegistry(path, new FlowCapableNodeBuilder()
-                .setTable(null)
-                .build());
+        fillRegistry(path, new FlowCapableNodeBuilder().build());
 
         fillRegistry(path, new FlowCapableNodeBuilder()
-                .setTable(Collections.singletonList(null))
+                .setTable(Collections.EMPTY_LIST)
                 .build());
 
         fillRegistry(path, new FlowCapableNodeBuilder()
-                .setTable(Collections.singletonList(new TableBuilder()
-                        .setFlow(null)
-                        .build()))
+                .setTable(Collections.singletonList(new TableBuilder().build()))
                 .build());
 
         fillRegistry(path, new FlowCapableNodeBuilder()
                 .setTable(Collections.singletonList(new TableBuilder()
-                        .setFlow(Collections.singletonList(null))
+                        .setFlow(Collections.EMPTY_LIST)
                         .build()))
                 .build());