From 79c4f1878e308b2095087b8b363eadd5d15d284d Mon Sep 17 00:00:00 2001 From: tonihei Date: Mon, 12 Aug 2019 16:39:16 +0100 Subject: [PATCH] Fix JavaDoc generation errors. This fixes the errors that prevent the JavaDoc generation with the Gradle script to run through. PiperOrigin-RevId: 262930857 --- .../android/exoplayer2/source/CompositeMediaSource.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/source/CompositeMediaSource.java b/library/core/src/main/java/com/google/android/exoplayer2/source/CompositeMediaSource.java index 4ebe97313b..7077416a02 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/source/CompositeMediaSource.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/source/CompositeMediaSource.java @@ -96,11 +96,11 @@ public abstract class CompositeMediaSource extends BaseMediaSource { /** * Prepares a child source. * - *

{@link #onChildSourceInfoRefreshed(T, MediaSource, Timeline)} will be called when the child - * source updates its timeline with the same {@code id} passed to this method. + *

{@link #onChildSourceInfoRefreshed(Object, MediaSource, Timeline)} will be called when the + * child source updates its timeline with the same {@code id} passed to this method. * - *

Any child sources that aren't explicitly released with {@link #releaseChildSource(T)} will - * be released in {@link #releaseSourceInternal()}. + *

Any child sources that aren't explicitly released with {@link #releaseChildSource(Object)} + * will be released in {@link #releaseSourceInternal()}. * * @param id A unique id to identify the child source preparation. Null is allowed as an id. * @param mediaSource The child {@link MediaSource}.