Sho SHIMIZU

Fix missing return statement in MPLS label allocation

Change-Id: I1ff26d253585d09b75ceecf819efa0d027057e50
......@@ -264,7 +264,7 @@ public class PathCompiler<T> {
List<ResourceAllocation> allocations =
creator.resourceService().allocate(intent.id(), ImmutableList.copyOf(resources));
if (allocations.isEmpty()) {
Collections.emptyMap();
return Collections.emptyMap();
}
return labels;
......