mirror of
https://github.com/samsonjs/media.git
synced 2026-03-27 09:45:47 +00:00
Limit max line length to 100 chars.
This commit is contained in:
parent
2cb6db2b42
commit
a679e39ab7
1 changed files with 2 additions and 1 deletions
|
|
@ -28,7 +28,8 @@ public final class Variant implements FormatWrapper {
|
|||
public final Format format;
|
||||
public final String name;
|
||||
|
||||
public Variant(int index, String name, String url, int bitrate, String codecs, int width, int height) {
|
||||
public Variant(int index, String name, String url, int bitrate, String codecs, int width,
|
||||
int height) {
|
||||
this.url = url;
|
||||
this.name = name;
|
||||
String formatName = name != null ? name : Integer.toString(index);
|
||||
|
|
|
|||
Loading…
Reference in a new issue