Committed by
Gerrit Code Review
Pass constraints argument to the constructor of super class
Change-Id: I2e689b6391b2a373c716dd1a421c9e1510ecb934
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -99,7 +99,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent { | ... | @@ -99,7 +99,7 @@ public final class LinkCollectionIntent extends ConnectivityIntent { |
99 | Set<Link> links, | 99 | Set<Link> links, |
100 | Set<ConnectPoint> egressPoints, | 100 | Set<ConnectPoint> egressPoints, |
101 | List<Constraint> constraints) { | 101 | List<Constraint> constraints) { |
102 | - super(appId, resources(links), selector, treatment); | 102 | + super(appId, resources(links), selector, treatment, constraints); |
103 | 103 | ||
104 | this.links = links; | 104 | this.links = links; |
105 | this.egressPoints = ImmutableSet.copyOf(egressPoints); | 105 | this.egressPoints = ImmutableSet.copyOf(egressPoints); | ... | ... |
-
Please register or login to post a comment