From 6dd20ed13a057a7ff0c7c0121e196485fda9f12a Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Mon, 21 Nov 2022 12:51:47 -0700 Subject: [PATCH] Make text information frame values abstract Make the values of TextInformationFrame an abstract list instead of an explicit ImmutableList. --- .../android/exoplayer2/metadata/id3/TextInformationFrame.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/id3/TextInformationFrame.java b/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/id3/TextInformationFrame.java index 0658f1340a..70fc21e05d 100644 --- a/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/id3/TextInformationFrame.java +++ b/library/extractor/src/main/java/com/google/android/exoplayer2/metadata/id3/TextInformationFrame.java @@ -37,7 +37,7 @@ public final class TextInformationFrame extends Id3Frame { public final String value; @NonNull - public final ImmutableList values; + public final List values; public TextInformationFrame(String id, @Nullable String description, @NonNull List values) { super(id);