mirror of
https://github.com/samsonjs/media.git
synced 2026-04-12 12:25:47 +00:00
Make text information frame values abstract
Make the values of TextInformationFrame an abstract list instead of an explicit ImmutableList.
This commit is contained in:
parent
0eb56f65b0
commit
6dd20ed13a
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ public final class TextInformationFrame extends Id3Frame {
|
|||
public final String value;
|
||||
|
||||
@NonNull
|
||||
public final ImmutableList<String> values;
|
||||
public final List<String> values;
|
||||
|
||||
public TextInformationFrame(String id, @Nullable String description, @NonNull List<String> values) {
|
||||
super(id);
|
||||
|
|
|
|||
Loading…
Reference in a new issue