Bump upstreams
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / Ipv4DestinationEntryDeserializerTest.java
index 79baddf8e3506583914caef174c511f21301eb09..fc712b947ebd2d0796ce43b68d5b896ce1b61dad 100644 (file)
@@ -32,7 +32,7 @@ public class Ipv4DestinationEntryDeserializerTest extends AbstractMatchEntryDese
         final Iterator<String> addressParts = IpConversionUtil.splitToParts(address);
 
         writeHeader(in, true);
-        in.writeBytes(IetfInetUtil.INSTANCE.ipv4AddressBytes(new Ipv4Address(addressParts.next())));
+        in.writeBytes(IetfInetUtil.ipv4AddressBytes(new Ipv4Address(addressParts.next())));
         in.writeBytes(MatchConvertorUtil.extractIpv4Mask(addressParts));
 
         final Ipv4Match match = (Ipv4Match) deserialize(in).getLayer3Match();