Fix most bgp-parser-impl checkstyle
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / AsPathAttributeParser.java
index 2f71d66474b0effeb632e7254de8d8dd5d67a20a..44f34ab7696f5f637776fd71f178472d6ae8d529 100644 (file)
@@ -67,7 +67,8 @@ public final class AsPathAttributeParser extends AbstractAttributeParser impleme
         if (asPath.getSegments() != null) {
             for (final Segments segments : asPath.getSegments()) {
                 if (segments.getAsSequence() != null) {
-                    AsPathSegmentParser.serializeAsList(segments.getAsSequence(), SegmentType.AS_SEQUENCE, segmentsBuffer);
+                    AsPathSegmentParser.serializeAsList(segments.getAsSequence(), SegmentType.AS_SEQUENCE,
+                        segmentsBuffer);
                 } else if (segments.getAsSet() != null) {
                     AsPathSegmentParser.serializeAsList(segments.getAsSet(), SegmentType.AS_SET, segmentsBuffer);
                 } else {