From 92a7bb534a706fe917308af48a4958c99b3bb754 Mon Sep 17 00:00:00 2001 From: tonihei Date: Thu, 28 Feb 2019 11:21:09 +0000 Subject: [PATCH] Remove wrong documentation. This is a left-over from the past and is no longer true. PiperOrigin-RevId: 236089921 --- .../main/java/com/google/android/exoplayer2/ExoPlayer.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayer.java b/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayer.java index 0ba4501207..d0f9e2ae04 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayer.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/ExoPlayer.java @@ -153,18 +153,12 @@ public interface ExoPlayer extends Player { /** * Prepares the player to play the provided {@link MediaSource}. Equivalent to * {@code prepare(mediaSource, true, true)}. - *

- * Note: {@link MediaSource} instances are not designed to be re-used. If you want to prepare a - * player more than once with the same piece of media, use a new instance each time. */ void prepare(MediaSource mediaSource); /** * Prepares the player to play the provided {@link MediaSource}, optionally resetting the playback * position the default position in the first {@link Timeline.Window}. - *

- * Note: {@link MediaSource} instances are not designed to be re-used. If you want to prepare a - * player more than once with the same piece of media, use a new instance each time. * * @param mediaSource The {@link MediaSource} to play. * @param resetPosition Whether the playback position should be reset to the default position in