Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a669af4 authored by Tyler Gunn's avatar Tyler Gunn Committed by android-build-merger
Browse files

Merge \\"Enhance toString on ConferenceParticipant.\\" into nyc-mr1-dev am: b822f7a9

am: b4eba241

Change-Id: I49dcd951c8e27211c7b8a374a50edb1218814531
parents c237c80f b4eba241
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -114,13 +114,13 @@ public class ConferenceParticipant implements Parcelable {
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("[ConferenceParticipant Handle: ");
        sb.append(mHandle);
        sb.append(Log.pii(mHandle));
        sb.append(" DisplayName: ");
        sb.append(mDisplayName);
        sb.append(Log.pii(mDisplayName));
        sb.append(" Endpoint: ");
        sb.append(mEndpoint);
        sb.append(Log.pii(mEndpoint));
        sb.append(" State: ");
        sb.append(mState);
        sb.append(Connection.stateToString(mState));
        sb.append("]");
        return sb.toString();
    }