Fix most bgp-parser-impl checkstyle
[bgpcep.git] / bgp / parser-impl / src / test / java / org / opendaylight / protocol / bgp / parser / impl / message / update / MultiExitDiscriminatorAttributeParserTest.java
index 3b60431f9451254e05b0367a08162696d66f82f4..27cc429a80abce3a64e09afb07af50a294aad395 100644 (file)
@@ -22,9 +22,9 @@ 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.MultiExitDiscBuilder;
 
 public class MultiExitDiscriminatorAttributeParserTest {
-
-    private static final byte[] ATTRIBUTE_BYTES = {(byte) 0x80, (byte) 0x04, (byte) 0x04,
-            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01};
+    private static final byte[] ATTRIBUTE_BYTES = {
+        (byte) 0x80, (byte) 0x04, (byte) 0x04, (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x01
+    };
 
     private static final Attributes RESULT = new AttributesBuilder()
             .setMultiExitDisc(new MultiExitDiscBuilder().setMed(1L).build()).build();