From 12e756273091f64152b0f053bee401684f9edbf6 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 --- .../main/java/androidx/media3/exoplayer/text/TextOutput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/text/TextOutput.java b/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/text/TextOutput.java index 5485452d96..6e12cd57fb 100644 --- a/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/text/TextOutput.java +++ b/libraries/exoplayer/src/main/java/androidx/media3/exoplayer/text/TextOutput.java @@ -39,7 +39,7 @@ public interface TextOutput { * 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); }