Update Javadoc for getRelatedStreams()

This commit is contained in:
wb9688 2020-07-14 21:26:40 +02:00
parent ff560e907a
commit fc3a63fec5
1 changed files with 4 additions and 4 deletions

View File

@ -313,8 +313,9 @@ public abstract class StreamExtractor extends Extractor {
/** /**
* Should return a list of streams related to the current handled. Many services show suggested * Should return a list of streams related to the current handled. Many services show suggested
* streams. If you don't like suggested streams you should implement them anyway since they can * streams. If you don't like suggested streams you should implement them anyway since they can
* be disabled by the user later in the frontend. * be disabled by the user later in the frontend. The first related stream might be what was
* If it is not available simply return null * previously known as a next stream.
* If related streams aren't available simply return {@code null}.
* *
* @return a list of InfoItems showing the related videos/streams * @return a list of InfoItems showing the related videos/streams
* @throws IOException * @throws IOException
@ -326,11 +327,10 @@ public abstract class StreamExtractor extends Extractor {
* Should return a list of Frameset object that contains preview of stream frames * Should return a list of Frameset object that contains preview of stream frames
* *
* @return list of preview frames or empty list if frames preview is not supported or not found for specified stream * @return list of preview frames or empty list if frames preview is not supported or not found for specified stream
* @throws IOException
* @throws ExtractionException * @throws ExtractionException
*/ */
@Nonnull @Nonnull
public List<Frameset> getFrames() throws IOException, ExtractionException { public List<Frameset> getFrames() throws ExtractionException {
return Collections.emptyList(); return Collections.emptyList();
} }