Squash more sonar warnings
[bgpcep.git] / pcep / spi / src / main / java / org / opendaylight / protocol / pcep / spi / EROSubobjectParser.java
index a37b296e6199e6bd166469495ff06e637d4ab9f5..ab2c453872e7e43ab794f90bb4826d0c8b9c5d2a 100644 (file)
@@ -7,9 +7,8 @@
  */
 package org.opendaylight.protocol.pcep.spi;
 
-import org.opendaylight.protocol.pcep.PCEPDeserializerException;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.Subobjects;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.explicit.route.object.ero.Subobjects;
 
 public interface EROSubobjectParser {
-       public Subobjects parseSubobject(final byte[] buffer, final boolean loose) throws PCEPDeserializerException;
+       Subobjects parseSubobject(byte[] buffer, boolean loose) throws PCEPDeserializerException;
 }