Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
2c801ca2
authored
Jul 24, 2018
by
GiuseppePiscopo
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
docs(playlist): fix javadoc comments
parent
c9b6a73c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
library/core/src/main/java/com/google/android/exoplayer2/source/ConcatenatingMediaSource.java
library/core/src/main/java/com/google/android/exoplayer2/source/ConcatenatingMediaSource.java
View file @
2c801ca2
...
@@ -280,10 +280,10 @@ public class ConcatenatingMediaSource extends CompositeMediaSource<MediaSourceHo
...
@@ -280,10 +280,10 @@ public class ConcatenatingMediaSource extends CompositeMediaSource<MediaSourceHo
* Removes a {@link MediaSource} from the playlist and executes a custom action on completion.
* Removes a {@link MediaSource} from the playlist and executes a custom action on completion.
*
*
* <p>Note: If you want to move the instance, it's preferable to use {@link #moveMediaSource(int,
* <p>Note: If you want to move the instance, it's preferable to use {@link #moveMediaSource(int,
* int)} instead.
* int
, Runnable
)} instead.
*
*
* <p>Note: If you want to remove a set of contiguous sources, it's preferable to use
* <p>Note: If you want to remove a set of contiguous sources, it's preferable to use
* {@link #removeMediaSourceRange(int, int)} instead.
* {@link #removeMediaSourceRange(int, int
, Runnable
)} instead.
*
*
* @param index The index at which the media source will be removed. This index must be in the
* @param index The index at which the media source will be removed. This index must be in the
* range of 0 <= index < {@link #getSize()}.
* range of 0 <= index < {@link #getSize()}.
...
@@ -346,7 +346,7 @@ public class ConcatenatingMediaSource extends CompositeMediaSource<MediaSourceHo
...
@@ -346,7 +346,7 @@ public class ConcatenatingMediaSource extends CompositeMediaSource<MediaSourceHo
* @throws IndexOutOfBoundsException when range is malformed, i.e. {@code fromIndex} >
* @throws IndexOutOfBoundsException when range is malformed, i.e. {@code fromIndex} >
* {@code toIndex}
* {@code toIndex}
* @param actionOnCompletion A {@link Runnable} which is executed immediately after the media
* @param actionOnCompletion A {@link Runnable} which is executed immediately after the media
* source has been removed from the playlist.
* source
range
has been removed from the playlist.
*/
*/
public
final
synchronized
void
removeMediaSourceRange
(
public
final
synchronized
void
removeMediaSourceRange
(
int
fromIndex
,
int
toIndex
,
@Nullable
Runnable
actionOnCompletion
)
{
int
fromIndex
,
int
toIndex
,
@Nullable
Runnable
actionOnCompletion
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment