From ffb5b41a2055347cd0670bff5f091417f91ccaca Mon Sep 17 00:00:00 2001 From: jaewan Date: Wed, 31 Mar 2021 13:46:02 +0100 Subject: [PATCH] Fix typo in Player#setMediaItems() Javadoc PiperOrigin-RevId: 366015326 --- .../src/main/java/com/google/android/exoplayer2/Player.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/common/src/main/java/com/google/android/exoplayer2/Player.java b/library/common/src/main/java/com/google/android/exoplayer2/Player.java index f73d4f7add..a57282fc2c 100644 --- a/library/common/src/main/java/com/google/android/exoplayer2/Player.java +++ b/library/common/src/main/java/com/google/android/exoplayer2/Player.java @@ -1339,7 +1339,7 @@ public interface Player { * C#TIME_UNSET} is passed, the default position of the given window is used. In any case, if * {@code startWindowIndex} is set to {@link C#INDEX_UNSET}, this parameter is ignored and the * position is not reset at all. - * @throws IllegalSeekPositionException If the provided {@code windowIndex} is not within the + * @throws IllegalSeekPositionException If the provided {@code startWindowIndex} is not within the * bounds of the list of media items. */ void setMediaItems(List mediaItems, int startWindowIndex, long startPositionMs);