Pass constraints argument to the constructor of super class

Change-Id: I2e689b6391b2a373c716dd1a421c9e1510ecb934
diff --git a/core/api/src/main/java/org/onosproject/net/intent/LinkCollectionIntent.java b/core/api/src/main/java/org/onosproject/net/intent/LinkCollectionIntent.java
index bac5146..9c39b8f 100644
--- a/core/api/src/main/java/org/onosproject/net/intent/LinkCollectionIntent.java
+++ b/core/api/src/main/java/org/onosproject/net/intent/LinkCollectionIntent.java
@@ -99,7 +99,7 @@
                                 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);