Make text information frame values abstract

Make the values of TextInformationFrame an abstract list instead of an
explicit ImmutableList.
parent 0eb56f65
...@@ -37,7 +37,7 @@ public final class TextInformationFrame extends Id3Frame { ...@@ -37,7 +37,7 @@ public final class TextInformationFrame extends Id3Frame {
public final String value; public final String value;
@NonNull @NonNull
public final ImmutableList<String> values; public final List<String> values;
public TextInformationFrame(String id, @Nullable String description, @NonNull List<String> values) { public TextInformationFrame(String id, @Nullable String description, @NonNull List<String> values) {
super(id); super(id);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment