Using ``Collections.emptyList()``

This commit is contained in:
litetex 2021-06-15 21:58:00 +02:00
parent 0f9ed020a4
commit ecf4232ce3
1 changed files with 2 additions and 2 deletions

View File

@ -1050,12 +1050,12 @@ public class YoutubeStreamExtractor extends StreamExtractor {
} }
if (storyboardsRenderer == null) { if (storyboardsRenderer == null) {
return new ArrayList<>(); return Collections.emptyList();
} }
final String storyboardsRendererSpec = storyboardsRenderer.getString("spec"); final String storyboardsRendererSpec = storyboardsRenderer.getString("spec");
if (storyboardsRendererSpec == null) { if (storyboardsRendererSpec == null) {
return new ArrayList<>(); return Collections.emptyList();
} }
final String[] spec = storyboardsRendererSpec.split("\\|"); final String[] spec = storyboardsRendererSpec.split("\\|");