Brian O'Connor
Committed by Gerrit Code Review

Abstract ConnectivityIntentCompiler is not a @Component

Change-Id: I62844f2dbc459f2b7053fbc0eb12e32f1e1293ac
......@@ -18,7 +18,6 @@ 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;
......@@ -43,7 +42,6 @@ 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> {
......