Bump upstreams
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / ArpTargetTransportAddressEntryDeserializerTest.java
index 4b9757f5de7b97cad9be903af45192bfa56a0556..a8dec037ce1f157178b290696599d3060aa608b3 100644 (file)
@@ -30,7 +30,7 @@ public class ArpTargetTransportAddressEntryDeserializerTest extends AbstractMatc
 
         writeHeader(in, false);
         Iterator<String> addressParts = IpConversionUtil.splitToParts(arpTargetTransportAddressNoMask);
-        in.writeBytes(IetfInetUtil.INSTANCE.ipv4AddressBytes(new Ipv4Address(addressParts.next())));
+        in.writeBytes(IetfInetUtil.ipv4AddressBytes(new Ipv4Address(addressParts.next())));
 
         assertEquals(arpTargetTransportAddressNoMask.getValue(),
                 ((ArpMatch) deserialize(in).getLayer3Match()).getArpTargetTransportAddress().getValue());
@@ -38,7 +38,7 @@ public class ArpTargetTransportAddressEntryDeserializerTest extends AbstractMatc
 
         writeHeader(in, true);
         addressParts = IpConversionUtil.splitToParts(arpTargetTransportAddress);
-        in.writeBytes(IetfInetUtil.INSTANCE.ipv4AddressBytes(new Ipv4Address(addressParts.next())));
+        in.writeBytes(IetfInetUtil.ipv4AddressBytes(new Ipv4Address(addressParts.next())));
         in.writeBytes(MatchConvertorUtil.extractIpv4Mask(addressParts));
 
         final Ipv4Prefix desAddress =