From 8ffef3d6322cef16255bb2448680bb9d7920904b Mon Sep 17 00:00:00 2001 From: tonihei Date: Fri, 30 Nov 2018 17:29:56 +0000 Subject: [PATCH] Add clarification to TextOutput doc. The list may be empty if no cues are available. PiperOrigin-RevId: 223527105 --- .../java/com/google/android/exoplayer2/text/TextOutput.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/text/TextOutput.java b/library/core/src/main/java/com/google/android/exoplayer2/text/TextOutput.java index 5a08db94cb..aa3b4e5557 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/text/TextOutput.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/text/TextOutput.java @@ -25,8 +25,7 @@ public interface TextOutput { /** * Called when there is a change in the {@link Cue}s. * - * @param cues The {@link Cue}s. + * @param cues The {@link Cue}s. May be empty. */ void onCues(List cues); - }