Remove EncodeConstants.SIZE_OF_{BYTE,SHORT,INT,LONG}_IN_BYTES
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / instruction / AbstractInstructionDeserializer.java
index 08252a310b91e9f86955208e39fb9e144dc3bc3d..08f95c298b7bc36bcd8c70c6433c5a929262fedb 100644 (file)
@@ -5,25 +5,21 @@
  * 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 org.opendaylight.openflowjava.protocol.api.extensibility.HeaderDeserializer;
 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
-import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.instruction.Instruction;
 
 public abstract class AbstractInstructionDeserializer implements OFDeserializer<Instruction>,
         HeaderDeserializer<Instruction> {
-
     /**
      * Skip first few bytes of instruction message because they are irrelevant.
      *
      * @param message Openflow buffered message
      **/
     protected static void processHeader(ByteBuf message) {
-        message.skipBytes(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
+        message.skipBytes(2 * Short.BYTES);
     }
-
 }