2
0
mirror of https://github.com/TeamNewPipe/NewPipeExtractor synced 2025-08-31 06:15:37 +00:00

Merge pull request #386 from mhmdanas/remove-subtitles-stream-get-url

Remove SubtitlesStream#getURL()
This commit is contained in:
Tobias Groza
2020-08-26 21:32:36 +02:00
committed by GitHub

View File

@@ -8,7 +8,6 @@ import java.util.Locale;
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;
@@ -34,7 +33,6 @@ public class SubtitlesStream extends Stream implements Serializable {
}
this.code = languageCode;
this.format = format;
this.url = url;
this.autoGenerated = autoGenerated;
}
@@ -42,10 +40,6 @@ public class SubtitlesStream extends Stream implements Serializable {
return format.suffix;
}
public String getURL() {
return url;
}
public boolean isAutoGenerated() {
return autoGenerated;
}