From 91de5fa0cbbb976defd18bfd7d5d9981ce2dc577 Mon Sep 17 00:00:00 2001 From: christosts Date: Wed, 15 Jun 2022 17:05:54 +0000 Subject: [PATCH] Misc javadoc fix. PiperOrigin-RevId: 455157744 --- .../java/com/google/android/exoplayer2/text/TextOutput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 831ce4ba586..35dbcfed57f 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 @@ -35,7 +35,7 @@ default void onCues(List cues) {} * Called when there is a change in the {@link CueGroup}. * *

Both {@link #onCues(List)} and {@link #onCues(CueGroup)} are called when there is a change - * in the cues You should only implement one or the other. + * in the cues. You should only implement one or the other. */ void onCues(CueGroup cueGroup); }