Removed checkstyle warnings.
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / AS4AggregatorAttributeParser.java
index a9039c441ecce6f8a5346d8bece15c7d0cbdcce3..d188e0843f031f6784b82583eae3c2f146404402 100644 (file)
@@ -7,14 +7,16 @@
  */
 package org.opendaylight.protocol.bgp.parser.impl.message.update;
 
+import io.netty.buffer.ByteBuf;
+
 import org.opendaylight.protocol.bgp.parser.spi.AttributeParser;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130918.update.PathAttributesBuilder;
+import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.update.PathAttributesBuilder;
 
 public final class AS4AggregatorAttributeParser implements AttributeParser {
-       public static final int TYPE = 17;
+    public static final int TYPE = 17;
 
-       @Override
-       public void parseAttribute(final byte[] bytes, final PathAttributesBuilder builder) {
-               // AS4 Aggregator is ignored
-       }
+    @Override
+    public void parseAttribute(final ByteBuf buffer, final PathAttributesBuilder builder) {
+        // AS4 Aggregator is ignored
+    }
 }
\ No newline at end of file