Fixing some Javadoc errors

- Cea708 Javadoc references private internals with @link. Doc
  about device accessibility settings doesn't relate to the
  decoder, either.
- Creator Javadoc unnecessary.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=146118092
This commit is contained in:
olly 2017-01-31 07:45:03 -08:00 committed by Oliver Woodman
parent 87e790f44d
commit 8f482cb2ed
2 changed files with 0 additions and 10 deletions

View file

@ -672,9 +672,6 @@ public final class Format implements Parcelable {
dest.writeParcelable(metadata, 0);
}
/**
* {@link Creator} implementation.
*/
public static final Creator<Format> CREATOR = new Creator<Format>() {
@Override

View file

@ -43,13 +43,6 @@ import java.util.List;
/**
* A {@link SubtitleDecoder} for CEA-708 (also known as "EIA-708").
*
* <p>This implementation does not provide full compatibility with the CEA-708 specification. Note
* that only the default pen/text and window/cue colors (i.e. text with
* {@link CueBuilder#COLOR_SOLID_WHITE} foreground and {@link CueBuilder#COLOR_SOLID_BLACK}
* background, and cues with {@link CueBuilder#COLOR_SOLID_BLACK} fill) will be overridden with
* device accessibility settings; all others will use the colors and opacity specified by the
* caption data.
*/
public final class Cea708Decoder extends CeaDecoder {