Sho SHIMIZU
Committed by Gerrit Code Review

Pass constraints argument to the constructor of super class

Change-Id: I2e689b6391b2a373c716dd1a421c9e1510ecb934
......@@ -99,7 +99,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent {
Set<Link> links,
Set<ConnectPoint> egressPoints,
List<Constraint> constraints) {
super(appId, resources(links), selector, treatment);
super(appId, resources(links), selector, treatment, constraints);
this.links = links;
this.egressPoints = ImmutableSet.copyOf(egressPoints);
......