Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / TlvRegistry.java
index aaf071202205ccf6da10ce8a5979de9f0a48ab5d..47e341735a5c1106dc515100742158cdb03743b6 100644 (file)
@@ -8,11 +8,10 @@
 package org.opendaylight.protocol.pcep.spi;
 
 import io.netty.buffer.ByteBuf;
-
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Tlv;
 
 public interface TlvRegistry {
-    Tlv parseTlv(final int type, final ByteBuf buffer) throws PCEPDeserializerException;
+    Tlv parseTlv(int type, ByteBuf buffer) throws PCEPDeserializerException;
 
-    void serializeTlv(final Tlv tlv, final ByteBuf buffer);
+    void serializeTlv(Tlv tlv, ByteBuf buffer);
 }