Bump upstreams for Silicon
[netvirt.git] / elanmanager / impl / src / main / java / org / opendaylight / netvirt / elan / l2gw / listeners / L2GatewayConnectionListener.java
index 19071cf7b160285a08fc23bafb4a3ad67c46aadd..8623cd23adf4a647bfcbb626ff31d2521790b5da 100644 (file)
@@ -325,7 +325,7 @@ public class L2GatewayConnectionListener extends AbstractClusteredAsyncDataTreeC
         if (psNode.augmentation(PhysicalSwitchAugmentation.class) != null) {
             return psNode.augmentation(PhysicalSwitchAugmentation.class).nonnullTunnelIps().values();
         }
-        return Collections.EMPTY_LIST;
+        return Collections.emptyList();
     }
 
     private List<Node> readAllConfigNodes(TypedReadTransaction<Configuration> tx) {
@@ -348,6 +348,6 @@ public class L2GatewayConnectionListener extends AbstractClusteredAsyncDataTreeC
         if (topologyOptional != null && topologyOptional.isPresent() && topologyOptional.get().getNode() != null) {
             return  new ArrayList<>(topologyOptional.get().nonnullNode().values());
         }
-        return Collections.EMPTY_LIST;
+        return Collections.emptyList();
     }
 }