mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Add HlsTrackMetadataEntry.toString
It's printed out by EventLogger, and currently looks pretty ugly PiperOrigin-RevId: 250772010
This commit is contained in:
parent
7e187283cd
commit
b47f37fbcd
@ -184,6 +184,11 @@ public final class HlsTrackMetadataEntry implements Metadata.Entry {
|
|||||||
this.variantInfos = Collections.unmodifiableList(variantInfos);
|
this.variantInfos = Collections.unmodifiableList(variantInfos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "HlsTrackMetadataEntry" + (groupId != null ? (" [" + groupId + ", " + name + "]") : "");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(@Nullable Object other) {
|
public boolean equals(@Nullable Object other) {
|
||||||
if (this == other) {
|
if (this == other) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user