Minor fixes for Javadoc warnings

This commit is contained in:
Oliver Woodman 2015-07-16 21:48:14 +01:00
parent 8a7d68da6c
commit 7c2d635565
2 changed files with 1 additions and 5 deletions

View file

@ -92,8 +92,6 @@ public final class C {
/**
* A prefix for custom ExoPlayer WebVTT headers.
*
* @hide
*/
public static final String WEBVTT_EXO_HEADER = "EXO-HEADER";
@ -101,8 +99,6 @@ public final class C {
* An element of a custom ExoPlayer WebVTT header. An {@code WEBVTT_OFFSET + value} element can
* be added to a custom ExoPlayer WebVTT header to specify an offset time (in microseconds) that
* should be added to the embedded MPEGTS value.
*
* @hide
*/
public static final String WEBVTT_EXO_HEADER_OFFSET = "OFFSET:";

View file

@ -88,7 +88,7 @@ public final class AudioTrack {
* Thrown when {@link android.media.AudioTrack#getTimestamp} returns a spurious timestamp, if
* {@code AudioTrack#failOnSpuriousAudioTimestamp} is set.
*/
private static final class InvalidAudioTrackTimestampException extends RuntimeException {
public static final class InvalidAudioTrackTimestampException extends RuntimeException {
public InvalidAudioTrackTimestampException(String message) {
super(message);