Bump upstreams
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / Ipv4SourceEntryDeserializerTest.java
index 71d4a24d222b8df92a2584b2bfc1bca3e2310e73..757513650b5ade258a628a60865bff835763a9c6 100644 (file)
@@ -32,7 +32,7 @@ public class Ipv4SourceEntryDeserializerTest extends AbstractMatchEntryDeseriali
         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();