Skip to content

Commit

Permalink
class visibility problem with Android Studio 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tresvecesseis committed Sep 15, 2016
1 parent 0834969 commit ce2a80f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import com.google.android.exoplayer2.text.tx3g.Tx3gDecoder;
import com.google.android.exoplayer2.text.webvtt.Mp4WebvttDecoder;
import com.google.android.exoplayer2.text.webvtt.WebvttDecoder;
import com.google.android.exoplayer2.text.dvbsubs.DvbSubsDecoder;
import com.google.android.exoplayer2.util.MimeTypes;

/**
Expand Down Expand Up @@ -58,6 +59,7 @@ public interface SubtitleDecoderFactory {
* <li>SubRip ({@link SubripDecoder})</li>
* <li>TX3G ({@link Tx3gDecoder})</li>
* <li>Eia608 ({@link Eia608Decoder})</li>
* <li>DVB ({@link DvbSubsDecoder})</li>
* </ul>
*/
SubtitleDecoderFactory DEFAULT = new SubtitleDecoderFactory() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Created by opatino on 8/17/16.
*/
final class DvbSubsDecoder extends SimpleSubtitleDecoder {
public final class DvbSubsDecoder extends SimpleSubtitleDecoder {
private final String TAG = "DVBSubs Decoder";

DvbSubtitlesParser parser;
Expand Down

0 comments on commit ce2a80f

Please sign in to comment.