Promote MessageRegistry to pcep-api
[bgpcep.git] / pcep / base-parser / src / main / java / org / opendaylight / protocol / pcep / parser / object / bnc / NonBranchNodeListObjectParser.java
index fd3609c35cb94c711ee1f0440850b343861ef4b7..e3c3731879142dc8e889e18c512b9e241f7147d0 100644 (file)
@@ -7,13 +7,14 @@
  */
 package org.opendaylight.protocol.pcep.parser.object.bnc;
 
-import com.google.common.base.Preconditions;
+import static com.google.common.base.Preconditions.checkArgument;
+
 import io.netty.buffer.ByteBuf;
 import io.netty.buffer.Unpooled;
+import org.opendaylight.protocol.pcep.PCEPDeserializerException;
 import org.opendaylight.protocol.pcep.parser.object.AbstractEROWithSubobjectsParser;
 import org.opendaylight.protocol.pcep.spi.EROSubobjectRegistry;
 import org.opendaylight.protocol.pcep.spi.ObjectUtil;
-import org.opendaylight.protocol.pcep.spi.PCEPDeserializerException;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Object;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.ObjectHeader;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.non.branch.node.object.NonBranchNodeList;
@@ -29,9 +30,8 @@ public final class NonBranchNodeListObjectParser extends AbstractEROWithSubobjec
 
     @Override
     public NonBranchNodeList parseObject(final ObjectHeader header, final ByteBuf bytes)
-        throws PCEPDeserializerException {
-        Preconditions.checkArgument(bytes != null && bytes.isReadable(),
-            "Array of bytes is mandatory. Can't be null or empty.");
+            throws PCEPDeserializerException {
+        checkArgument(bytes != null && bytes.isReadable(), "Array of bytes is mandatory. Can't be null or empty.");
         return new NonBranchNodeListBuilder()
             .setIgnore(header.getIgnore())
             .setProcessingRule(header.getProcessingRule())
@@ -41,7 +41,7 @@ public final class NonBranchNodeListObjectParser extends AbstractEROWithSubobjec
 
     @Override
     public void serializeObject(final Object object, final ByteBuf buffer) {
-        Preconditions.checkArgument(object instanceof NonBranchNodeList,
+        checkArgument(object instanceof NonBranchNodeList,
             "Wrong instance of PCEPObject. Passed %s. Needed NonBranchNodeList.", object.getClass());
         final NonBranchNodeList nbnc = (NonBranchNodeList) object;
         final ByteBuf body = Unpooled.buffer();