Brian O'Connor

Revert "Abstract ConnectivityIntentCompiler is not a @Component"

This problem needs to be fixed in a better way.

This reverts commit 8317ad56.

Change-Id: Icbc4492016a0858221a3e79121db36cbb87b3b2b
......@@ -18,6 +18,7 @@ package org.onosproject.net.intent.impl.compiler;
import com.google.common.base.Predicate;
import com.google.common.collect.FluentIterable;
import com.google.common.collect.ImmutableList;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.ReferenceCardinality;
import org.onosproject.net.ElementId;
......@@ -42,6 +43,7 @@ import java.util.Set;
* Base class for compilers of various
* {@link org.onosproject.net.intent.ConnectivityIntent connectivity intents}.
*/
@Component(immediate = true)
public abstract class ConnectivityIntentCompiler<T extends ConnectivityIntent>
implements IntentCompiler<T> {
......