package io.reactivex.internal.operators.maybe; import io.reactivex.MaybeSource; import io.reactivex.functions.Function; import org.reactivestreams.Publisher; /* loaded from: classes2.dex */ public enum MaybeToPublisher implements Function, Publisher> { INSTANCE; public static Function, Publisher> instance() { return INSTANCE; } @Override // io.reactivex.functions.Function public Publisher apply(MaybeSource maybeSource) throws Exception { return new MaybeToFlowable(maybeSource); } }