Commit 7c2d6355 by Oliver Woodman

Minor fixes for Javadoc warnings

parent 8a7d68da
...@@ -92,8 +92,6 @@ public final class C { ...@@ -92,8 +92,6 @@ public final class C {
/** /**
* A prefix for custom ExoPlayer WebVTT headers. * A prefix for custom ExoPlayer WebVTT headers.
*
* @hide
*/ */
public static final String WEBVTT_EXO_HEADER = "EXO-HEADER"; public static final String WEBVTT_EXO_HEADER = "EXO-HEADER";
...@@ -101,8 +99,6 @@ public final class C { ...@@ -101,8 +99,6 @@ public final class C {
* An element of a custom ExoPlayer WebVTT header. An {@code WEBVTT_OFFSET + value} element can * 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 * be added to a custom ExoPlayer WebVTT header to specify an offset time (in microseconds) that
* should be added to the embedded MPEGTS value. * should be added to the embedded MPEGTS value.
*
* @hide
*/ */
public static final String WEBVTT_EXO_HEADER_OFFSET = "OFFSET:"; public static final String WEBVTT_EXO_HEADER_OFFSET = "OFFSET:";
......
...@@ -88,7 +88,7 @@ public final class AudioTrack { ...@@ -88,7 +88,7 @@ public final class AudioTrack {
* Thrown when {@link android.media.AudioTrack#getTimestamp} returns a spurious timestamp, if * Thrown when {@link android.media.AudioTrack#getTimestamp} returns a spurious timestamp, if
* {@code AudioTrack#failOnSpuriousAudioTimestamp} is set. * {@code AudioTrack#failOnSpuriousAudioTimestamp} is set.
*/ */
private static final class InvalidAudioTrackTimestampException extends RuntimeException { public static final class InvalidAudioTrackTimestampException extends RuntimeException {
public InvalidAudioTrackTimestampException(String message) { public InvalidAudioTrackTimestampException(String message) {
super(message); super(message);
......
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