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 Andrew Lewis
parent 6dd3d49093
commit 5482bd05e4

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.