1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-07-02 10:03:30 +00:00
NewPipe/app/src/main/java/org/schabi/newpipe/player/resolver/Resolver.java

9 lines
235 B
Java
Raw Normal View History

package org.schabi.newpipe.player.resolver;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
2018-05-12 03:09:02 +00:00
public interface Resolver<Source, Product> {
@Nullable Product resolve(@NonNull Source source);
}