Enforce pcep-spi checkstyle
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / EROSubobjectRegistry.java
index ccd6e4eb8ecabdb2688f9f73fd00ba6438652251..6dd6c2b52b55dbcb3f75af9b5234d0b139101436 100644 (file)
@@ -23,8 +23,7 @@ public interface EROSubobjectRegistry {
      * @return null if the parser for this subobject could not be found
      * @throws PCEPDeserializerException if the parsing did not succeed
      */
-    Subobject parseSubobject(final int subobjectType, final ByteBuf buffer, final boolean loose)
-        throws PCEPDeserializerException;
+    Subobject parseSubobject(int subobjectType, ByteBuf buffer, boolean loose) throws PCEPDeserializerException;
 
     /**
      * Find serializer for given subobject. Delegates parsing to found serializer.
@@ -32,5 +31,5 @@ public interface EROSubobjectRegistry {
      * @param subobject to be parsed
      * @param buffer    buffer where the serialized subobject will be parsed
      */
-    void serializeSubobject(final Subobject subobject, final ByteBuf buffer);
+    void serializeSubobject(Subobject subobject, ByteBuf buffer);
 }