X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=pcep%2Fbase-parser%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fprotocol%2Fpcep%2Fparser%2Fobject%2Fbnc%2FBranchNodeListObjectParser.java;fp=pcep%2Fbase-parser%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fprotocol%2Fpcep%2Fparser%2Fobject%2Fbnc%2FBranchNodeListObjectParser.java;h=19b72c8a2eed568a5720ec741427588a82e37949;hb=573e76691c197a1756e48d54d24f1f9ee76df472;hp=0bc2280446ca2da6411e9d3f8b0fd8418df3ce7e;hpb=f56de4cc1d9e374e2e353f335ecc5d244060275b;p=bgpcep.git diff --git a/pcep/base-parser/src/main/java/org/opendaylight/protocol/pcep/parser/object/bnc/BranchNodeListObjectParser.java b/pcep/base-parser/src/main/java/org/opendaylight/protocol/pcep/parser/object/bnc/BranchNodeListObjectParser.java index 0bc2280446..19b72c8a2e 100644 --- a/pcep/base-parser/src/main/java/org/opendaylight/protocol/pcep/parser/object/bnc/BranchNodeListObjectParser.java +++ b/pcep/base-parser/src/main/java/org/opendaylight/protocol/pcep/parser/object/bnc/BranchNodeListObjectParser.java @@ -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.branch.node.object.BranchNodeList; @@ -30,9 +31,8 @@ public final class BranchNodeListObjectParser extends AbstractEROWithSubobjectsP @Override public BranchNodeList 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 BranchNodeListBuilder() .setIgnore(header.getIgnore()) .setProcessingRule(header.getProcessingRule()) @@ -42,7 +42,7 @@ public final class BranchNodeListObjectParser extends AbstractEROWithSubobjectsP @Override public void serializeObject(final Object object, final ByteBuf buffer) { - Preconditions.checkArgument(object instanceof BranchNodeList, + checkArgument(object instanceof BranchNodeList, "Wrong instance of PCEPObject. Passed %s. Needed BranchNodeList.", object.getClass()); final BranchNodeList nbnc = (BranchNodeList) object; final ByteBuf body = Unpooled.buffer();