[MediaCCC] Return empty list of video-only streams instead of null

This commit is contained in:
Stypox 2020-04-11 17:43:26 +02:00
parent 8dc3f28618
commit a4097d8d01
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ public class MediaCCCStreamExtractor extends StreamExtractor {
@Override
public List<VideoStream> getVideoOnlyStreams() {
return null;
return Collections.emptyList();
}
@Nonnull