Fixup Augmentable and Identifiable methods changing
[bgpcep.git] / bgp / labeled-unicast / src / main / java / org / opendaylight / protocol / bgp / labeled / unicast / AbstractLabeledUnicastRIBSupport.java
index cbbe65558944c82fa904bedad34d04c455f73dd8..57be87a87758f2bea7adfc5971cb651e398f4b67 100644 (file)
@@ -176,7 +176,7 @@ abstract class AbstractLabeledUnicastRIBSupport<
         } else {
             builder = new LabeledUnicastRouteBuilder();
         }
-        return builder.setKey(new LabeledUnicastRouteKey(new PathId(pathId), routeKey))
+        return builder.withKey(new LabeledUnicastRouteKey(new PathId(pathId), routeKey))
                 .setAttributes(attributes).build();
     }
 }