Commit 1d4305cb by andrewlewis Committed by Oliver Woodman

Remove redundant modifiers in ExoPlayer.java.

Based on

http://docs.oracle.com/javase/specs/jls/se7/html/jls-9.html#jls-9.3
http://docs.oracle.com/javase/specs/jls/se7/html/jls-9.html#jls-9.5
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=117338783
parent 16e1eaf4
...@@ -96,7 +96,7 @@ public interface ExoPlayer { ...@@ -96,7 +96,7 @@ public interface ExoPlayer {
/** /**
* A factory for instantiating ExoPlayer instances. * A factory for instantiating ExoPlayer instances.
*/ */
static final class Factory { final class Factory {
/** /**
* The default minimum duration of data that must be buffered for playback to start or resume * The default minimum duration of data that must be buffered for playback to start or resume
...@@ -202,31 +202,31 @@ public interface ExoPlayer { ...@@ -202,31 +202,31 @@ public interface ExoPlayer {
/** /**
* The player is neither prepared or being prepared. * The player is neither prepared or being prepared.
*/ */
static final int STATE_IDLE = 1; int STATE_IDLE = 1;
/** /**
* The player is being prepared. * The player is being prepared.
*/ */
static final int STATE_PREPARING = 2; int STATE_PREPARING = 2;
/** /**
* The player is prepared but not able to immediately play from the current position. The cause * The player is prepared but not able to immediately play from the current position. The cause
* is {@link TrackRenderer} specific, but this state typically occurs when more data needs * is {@link TrackRenderer} specific, but this state typically occurs when more data needs
* to be buffered for playback to start. * to be buffered for playback to start.
*/ */
static final int STATE_BUFFERING = 3; int STATE_BUFFERING = 3;
/** /**
* The player is prepared and able to immediately play from the current position. The player will * The player is prepared and able to immediately play from the current position. The player will
* be playing if {@link #getPlayWhenReady()} returns true, and paused otherwise. * be playing if {@link #getPlayWhenReady()} returns true, and paused otherwise.
*/ */
static final int STATE_READY = 4; int STATE_READY = 4;
/** /**
* The player has finished playing the media. * The player has finished playing the media.
*/ */
static final int STATE_ENDED = 5; int STATE_ENDED = 5;
/** /**
* Represents an unknown time or duration. * Represents an unknown time or duration.
*/ */
static final long UNKNOWN_TIME = -1; long UNKNOWN_TIME = -1;
/** /**
* Gets the {@link Looper} associated with the playback thread. * Gets the {@link Looper} associated with the playback thread.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment