Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
public class SubtitlesStream extends Stream implements Serializable {
private final MediaFormat format;
private final Locale locale;
private final String url;
private final boolean autoGenerated;
private final String code;

Expand All @@ -34,18 +33,13 @@ public SubtitlesStream(MediaFormat format, String languageCode, String url, bool
}
this.code = languageCode;
this.format = format;
this.url = url;
this.autoGenerated = autoGenerated;
}

public String getExtension() {
return format.suffix;
}

public String getURL() {
return url;
}

public boolean isAutoGenerated() {
return autoGenerated;
}
Expand Down