Change & to && 89/59289/1
authorAnisha Kumar <anishax.kumar@intel.com>
Mon, 6 Aug 2018 22:16:28 +0000 (15:16 -0700)
committerAnisha Kumar <anishax.kumar@intel.com>
Mon, 6 Aug 2018 22:16:34 +0000 (15:16 -0700)
The boolean expression on line 243 requires two "&"
instead of one.

Issue-ID: SO-666
Change-Id: I3965119a223063e9bcee8a5ca807791b41f63410
Signed-off-by: Anisha Kumar <anishax.kumar@intel.com>
bpmn/so-bpmn-tasks/src/main/java/org/onap/so/client/adapter/network/mapper/NetworkAdapterObjectMapper.java

index a1501da..ee8f503 100644 (file)
@@ -240,7 +240,7 @@ public class NetworkAdapterObjectMapper {
                for (org.onap.so.bpmn.servicedecomposition.bbobjects.Subnet subnet : subnets) {
                        org.onap.so.openstack.beans.Subnet openstackSubnet = modelMapper.map(subnet, org.onap.so.openstack.beans.Subnet.class);
                        //update cidr value
-                       if (subnet.getNetworkStartAddress() != null & subnet.getCidrMask() != null)
+                       if (subnet.getNetworkStartAddress() != null && subnet.getCidrMask() != null)
                                openstackSubnet.setCidr(subnet.getNetworkStartAddress().concat(FORWARD_SLASH).concat(subnet.getCidrMask()));
                        List<org.onap.so.bpmn.servicedecomposition.bbobjects.HostRoute> hostRouteList = subnet.getHostRoutes();
                        List<org.onap.so.openstack.beans.HostRoute> openstackHostRouteList = new ArrayList<>();