16 lines
657 B
Java
16 lines
657 B
Java
package com.google.firebase.components;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface ComponentRegistrarProcessor {
|
|
public static final ComponentRegistrarProcessor NOOP = new ComponentRegistrarProcessor() { // from class: com.google.firebase.components.ComponentRegistrarProcessor$$ExternalSyntheticLambda0
|
|
@Override // com.google.firebase.components.ComponentRegistrarProcessor
|
|
public final List processRegistrar(ComponentRegistrar componentRegistrar) {
|
|
return componentRegistrar.getComponents();
|
|
}
|
|
};
|
|
|
|
List<Component<?>> processRegistrar(ComponentRegistrar componentRegistrar);
|
|
}
|