Fix most bgp-parser-impl checkstyle
[bgpcep.git] / bgp / parser-impl / src / test / java / org / opendaylight / protocol / bgp / parser / impl / message / update / AsPathAttributeParserTest.java
index bb50a18bef8ba92aa8a047d5bedc682236d70eb2..3c9152e9b4aa409874164e3dbc10f9af3f90a881 100644 (file)
@@ -28,14 +28,15 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.mess
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.path.attributes.attributes.as.path.SegmentsBuilder;
 
 public class AsPathAttributeParserTest {
-
-    private static final byte[] ATTRIBUTE_BYTES = {(byte) 0x40, (byte) 0x02, (byte) 0x14,
-            (byte) 0x01, (byte) 0x02, (byte) 0x00, (byte) 0x00,
-            (byte) 0x00, (byte) 0x01, (byte) 0x00, (byte) 0x00,
-            (byte) 0x00, (byte) 0x02, (byte) 0x02, (byte) 0x02,
-            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x03,
-            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x04};
-    private static final byte[] EMPTY_ATTRIBUTE_BYTES = {(byte) 0x40, (byte) 0x02, (byte) 0x00};
+    private static final byte[] ATTRIBUTE_BYTES = {
+        (byte) 0x40, (byte) 0x02, (byte) 0x14,
+        (byte) 0x01, (byte) 0x02, (byte) 0x00, (byte) 0x00,
+        (byte) 0x00, (byte) 0x01, (byte) 0x00, (byte) 0x00,
+        (byte) 0x00, (byte) 0x02, (byte) 0x02, (byte) 0x02,
+        (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x03,
+        (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x04
+    };
+    private static final byte[] EMPTY_ATTRIBUTE_BYTES = { (byte) 0x40, (byte) 0x02, (byte) 0x00 };
 
     @Test
     public void testAttributeParser() throws BGPParsingException, BGPDocumentedException {