Bump upstreams
[openflowplugin.git] / extension / openflowplugin-extension-nicira / src / main / java / org / opendaylight / openflowplugin / extension / vendor / nicira / convertor / match / MatchUtil.java
index 68f0aa4c1513353310adf618be420116d75b4acb..a43523e74a465f9f02223d43dfdfdd8d9ed0d189 100644 (file)
@@ -181,10 +181,10 @@ public final class MatchUtil {
     }
 
     public static Uint32 ipv4ToUint32(final Ipv4Address ipv4) {
-        return Uint32.fromIntBits(IetfInetUtil.INSTANCE.ipv4AddressBits(ipv4));
+        return Uint32.fromIntBits(IetfInetUtil.ipv4AddressBits(ipv4));
     }
 
     public static Ipv4Address uint32ToIpv4Address(final Uint32 value) {
-        return IetfInetUtil.INSTANCE.ipv4AddressFor(value.intValue());
+        return IetfInetUtil.ipv4AddressFor(value.intValue());
     }
 }