Bump upstreams
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / match / OxmDeserializerHelper.java
index ec0805e7a807c97628df97ba64b982411e022c14..c4fde9c666bbcfddab38cb1fdaf865583f0b3f2b 100644 (file)
@@ -44,6 +44,6 @@ public final class OxmDeserializerHelper {
     public static MacAddress convertMacAddress(final ByteBuf input) {
         byte[] address = new byte[EncodeConstants.MAC_ADDRESS_LENGTH];
         input.readBytes(address);
-        return IetfYangUtil.INSTANCE.macAddressFor(address);
+        return IetfYangUtil.macAddressFor(address);
     }
 }