Make text information frame values abstract

Make the values of TextInformationFrame an abstract list instead of an
explicit ImmutableList.
This commit is contained in:
Alexander Capehart 2022-11-21 12:51:47 -07:00
parent 0eb56f65b0
commit 6dd20ed13a
No known key found for this signature in database
GPG Key ID: 37DBE3621FE9AD47

View File

@ -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);