Priyanka B
Committed by Gerrit Code Review

[ONOS] Bandwidth allocation fix to onos1.6

Change-Id: I03bf4334ef148c8870d61ec2bca3fb3b3a0a78e5
......@@ -86,7 +86,7 @@ final class ContinuousResourceAllocation {
((ContinuousResource) x.resource()).value() == resource.value()))
.collect(Collectors.toList());
if (matched.size() > 1) {
if (matched.size() > 0) {
matched.remove(0);
}
......