Fix most bgp-parser-impl checkstyle
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / ClusterIdAttributeParser.java
index 6570a499d88a567b4319548a7735116122928aff..b3daa9da97590d804a0bb2d03414bfbfa7fa3d1d 100644 (file)
@@ -51,7 +51,7 @@ public final class ClusterIdAttributeParser extends AbstractAttributeParser impl
         if (readable % Ipv4Util.IP4_LENGTH != 0) {
             throw errorHandling.reportError(BGPError.ATTR_LENGTH_ERROR,
                 "Length of CLUSTER_LIST should be a multiple of 4, but is %s", readable);
-         }
+        }
 
         final int count = readable / Ipv4Util.IP4_LENGTH;
         final List<ClusterIdentifier> list = new ArrayList<>(count);