Bug-5644: Fix checkstyle invocation for l2switch builds
[l2switch.git] / hosttracker / implementation / src / main / java / org / opendaylight / l2switch / hosttracker / plugin / util / Utilities.java
index f6ee1e19e5ab2741e5b0813b42eb908699d77950..c4bc55b7628a6ba8480c46e5ef7f6658d685b74d 100644 (file)
@@ -37,8 +37,7 @@ public class Utilities {
                         .setSourceNode(srcNId)//
                         .setSourceTp(srcTpId).build())//
                 .setDestination(new DestinationBuilder()//
-                        .setDestNode(dstNId)
-                        .setDestTp(dstTpId).build())//
+                        .setDestNode(dstNId).setDestTp(dstTpId).build())//
                 .setLinkId(new LinkId(srcTpId.getValue() + "/" + dstTpId.getValue()));
         srcdst.setKey(new LinkKey(srcdst.getLinkId()));
         LinkBuilder dstsrc = new LinkBuilder()//
@@ -46,8 +45,7 @@ public class Utilities {
                         .setSourceNode(dstNId)//
                         .setSourceTp(dstTpId).build())//
                 .setDestination(new DestinationBuilder()//
-                        .setDestNode(srcNId)
-                        .setDestTp(srcTpId).build())//
+                        .setDestNode(srcNId).setDestTp(srcTpId).build())//
                 .setLinkId(new LinkId(dstTpId.getValue() + "/" + srcTpId.getValue()));
         dstsrc.setKey(new LinkKey(dstsrc.getLinkId()));
         links.add(dstsrc.build());