Fix multiple checkstyle complains
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / update / CommunityUtil.java
index 2749bf7792bc55e2cc43d1e06af3d5de15d395e9..1e198e0677ec5a2a738d5e8bd60ec5d78621ac83 100644 (file)
@@ -25,18 +25,21 @@ public final class CommunityUtil {
      * advertised outside a BGP confederation boundary (a stand-alone autonomous system that is not part of a
      * confederation should be considered a confederation itself).
      */
-    public static final Community NO_EXPORT = CommunityUtil.create(NoopReferenceCache.getInstance(), 0xFFFF, 0xFF01);
+    public static final Community NO_EXPORT
+            = CommunityUtil.create(NoopReferenceCache.getInstance(), 0xFFFF, 0xFF01);
     /**
      * NO_ADVERTISE community. All routes received carrying a communities attribute containing this value MUST NOT be
      * advertised to other BGP peers.
      */
-    public static final Community NO_ADVERTISE = CommunityUtil.create(NoopReferenceCache.getInstance(), 0xFFFF, 0xFF02);
+    public static final Community NO_ADVERTISE
+            = CommunityUtil.create(NoopReferenceCache.getInstance(), 0xFFFF, 0xFF02);
     /**
      * NO_EXPORT_SUBCONFED community. All routes received carrying a communities attribute containing this value MUST
      * NOT be advertised to external BGP peers (this includes peers in other members autonomous systems inside a BGP
      * confederation).
      */
-    public static final Community NO_EXPORT_SUBCONFED = CommunityUtil.create(NoopReferenceCache.getInstance(), 0xFFFF, 0xFF03);
+    public static final Community NO_EXPORT_SUBCONFED
+            = CommunityUtil.create(NoopReferenceCache.getInstance(), 0xFFFF, 0xFF03);
 
     private final ReferenceCache refCache;