Remove EncodeConstants.SIZE_OF_{BYTE,SHORT,INT,LONG}_IN_BYTES
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / instruction / WriteMetadataInstructionDeserializer.java
index c3751d8a6ae21408b8b9cff512dfbc9c611f6570..103029bc550546b292eb758030e84b5ea64ef11c 100644 (file)
@@ -5,27 +5,24 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.openflowplugin.impl.protocol.deserialization.instruction;
 
 import io.netty.buffer.ByteBuf;
 import java.math.BigInteger;
-import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
 import org.opendaylight.openflowjava.protocol.impl.util.InstructionConstants;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.Instruction;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.instruction.WriteMetadataCaseBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.instruction.write.metadata._case.WriteMetadataBuilder;
 
 public class WriteMetadataInstructionDeserializer extends AbstractInstructionDeserializer {
-
     @Override
     public Instruction deserialize(ByteBuf message) {
         processHeader(message);
         message.skipBytes(InstructionConstants.PADDING_IN_WRITE_METADATA);
 
-        final byte[] meta = new byte[EncodeConstants.SIZE_OF_LONG_IN_BYTES];
+        final byte[] meta = new byte[Long.BYTES];
         message.readBytes(meta);
-        final byte[] metaMask = new byte[EncodeConstants.SIZE_OF_LONG_IN_BYTES];
+        final byte[] metaMask = new byte[Long.BYTES];
         message.readBytes(metaMask);
 
         return new WriteMetadataCaseBuilder()
@@ -41,5 +38,4 @@ public class WriteMetadataInstructionDeserializer extends AbstractInstructionDes
         processHeader(message);
         return new WriteMetadataCaseBuilder().build();
     }
-
 }