mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2024-12-14 22:30:33 +05:30
Merge pull request #386 from mhmdanas/remove-subtitles-stream-get-url
Remove SubtitlesStream#getURL()
This commit is contained in:
commit
6633f26ec5
@ -8,7 +8,6 @@ import java.util.Locale;
|
|||||||
public class SubtitlesStream extends Stream implements Serializable {
|
public class SubtitlesStream extends Stream implements Serializable {
|
||||||
private final MediaFormat format;
|
private final MediaFormat format;
|
||||||
private final Locale locale;
|
private final Locale locale;
|
||||||
private final String url;
|
|
||||||
private final boolean autoGenerated;
|
private final boolean autoGenerated;
|
||||||
private final String code;
|
private final String code;
|
||||||
|
|
||||||
@ -34,7 +33,6 @@ public class SubtitlesStream extends Stream implements Serializable {
|
|||||||
}
|
}
|
||||||
this.code = languageCode;
|
this.code = languageCode;
|
||||||
this.format = format;
|
this.format = format;
|
||||||
this.url = url;
|
|
||||||
this.autoGenerated = autoGenerated;
|
this.autoGenerated = autoGenerated;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,10 +40,6 @@ public class SubtitlesStream extends Stream implements Serializable {
|
|||||||
return format.suffix;
|
return format.suffix;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getURL() {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isAutoGenerated() {
|
public boolean isAutoGenerated() {
|
||||||
return autoGenerated;
|
return autoGenerated;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user