Add description to TextInformationFrame.toString() output

This field is used in .equals(), we should print it in toString() too

PiperOrigin-RevId: 263335432
This commit is contained in:
ibaker 2019-08-14 14:12:51 +01:00 committed by Oliver Woodman
parent 90b62c67fb
commit dcac4aa67f

View file

@ -66,7 +66,7 @@ public final class TextInformationFrame extends Id3Frame {
@Override
public String toString() {
return id + ": value=" + value;
return id + ": description=" + description + ": value=" + value;
}
// Parcelable implementation.