Fix RIBImpl checkstyle 15/80815/2
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 13 Mar 2019 10:14:50 +0000 (11:14 +0100)
committerRobert Varga <nite@hq.sk>
Wed, 13 Mar 2019 11:44:04 +0000 (11:44 +0000)
This fixes an overly-long line, making checkstyle happier.

Change-Id: Icbcda9f22c27ac38557c197344a1443c4e17e400
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
bgp/rib-impl/src/main/java/org/opendaylight/protocol/bgp/rib/impl/RIBImpl.java

index 0801512d39b1263d5da3e87052a155ee9b022229..ff53d036980082243bb1c94604344ff726fb726a 100755 (executable)
@@ -146,8 +146,8 @@ public final class RIBImpl extends BGPRibStateImpl implements RIB, TransactionCh
         this.ribPolicies = requireNonNull(ribPolicies);
         this.codecsRegistry = codecsRegistry;
         this.ribContextRegistry = RIBSupportContextRegistryImpl.create(extensions, this.codecsRegistry);
-        final InstanceIdentifierBuilder yangRibIdBuilder = YangInstanceIdentifier.builder().node(BGPRIB_NID).node(RIB_NID);
-        this.yangRibId = yangRibIdBuilder.nodeWithKey(Rib.QNAME, RIB_ID_QNAME, ribId.getValue()).build();
+        this.yangRibId = YangInstanceIdentifier.builder().node(BGPRIB_NID).node(RIB_NID)
+                .nodeWithKey(Rib.QNAME, RIB_ID_QNAME, ribId.getValue()).build();
         this.bestPathSelectionStrategies = requireNonNull(bestPathSelectionStrategies);
         this.ribId = ribId;