Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / MessageRegistry.java
index 9eb8c7038971e2bff774c31b197872a19cee2e5b..2b5ed015bcf9c4dc1c90d24dc07a8d9fed64ad88 100644 (file)
@@ -8,9 +8,7 @@
 package org.opendaylight.protocol.pcep.spi;
 
 import io.netty.buffer.ByteBuf;
-
 import java.util.List;
-
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Message;
 
 public interface MessageRegistry {
@@ -23,7 +21,7 @@ public interface MessageRegistry {
      * @return null if the parser for this message could not be found
      * @throws PCEPDeserializerException if the parsing did not succeed
      */
-    Message parseMessage(final int messageType, final ByteBuf buffer, final List<Message> errors) throws PCEPDeserializerException;
+    Message parseMessage(int messageType, ByteBuf buffer, List<Message> errors) throws PCEPDeserializerException;
 
     /**
      * Find serializer for given message. Delegates parsing to found serializer.
@@ -31,5 +29,5 @@ public interface MessageRegistry {
      * @param message to be parsed
      * @param buffer byte buffer that will be filled with serialized message
      */
-    void serializeMessage(final Message message, final ByteBuf buffer);
+    void serializeMessage(Message message, ByteBuf buffer);
 }