Commit b47f37fb by olly Committed by Oliver Woodman

Add HlsTrackMetadataEntry.toString

It's printed out by EventLogger, and currently looks pretty ugly

PiperOrigin-RevId: 250772010
parent 7e187283
......@@ -185,6 +185,11 @@ public final class HlsTrackMetadataEntry implements Metadata.Entry {
}
@Override
public String toString() {
return "HlsTrackMetadataEntry" + (groupId != null ? (" [" + groupId + ", " + name + "]") : "");
}
@Override
public boolean equals(@Nullable Object other) {
if (this == other) {
return true;
......
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