diff options
author | Etan Cohen <etancohen@google.com> | 2014-12-10 10:08:20 -0800 |
---|---|---|
committer | Etan Cohen <etancohen@google.com> | 2014-12-10 18:17:26 +0000 |
commit | db45a01e229f8af7fa36874230e47deb636727d4 (patch) | |
tree | bdafb71ea2e201ae26b67258b11346086a9f6eff /telephony | |
parent | eb4de87683a0d1959d64af08f3685e1b3701a314 (diff) | |
download | frameworks_base-db45a01e229f8af7fa36874230e47deb636727d4.zip frameworks_base-db45a01e229f8af7fa36874230e47deb636727d4.tar.gz frameworks_base-db45a01e229f8af7fa36874230e47deb636727d4.tar.bz2 |
Add missing member to string conversion - helps in debugging.
Change-Id: I0c8b58f69adcd89038a2c320c9d75172b7a10d5c
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/ims/ImsCallProfile.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/telephony/java/com/android/ims/ImsCallProfile.java b/telephony/java/com/android/ims/ImsCallProfile.java index 9de938a..8740e19 100644 --- a/telephony/java/com/android/ims/ImsCallProfile.java +++ b/telephony/java/com/android/ims/ImsCallProfile.java @@ -269,6 +269,7 @@ public class ImsCallProfile implements Parcelable { public String toString() { return "{ serviceType=" + mServiceType + ", callType=" + mCallType + + ", restrictCause=" + mRestrictCause + ", callExtras=" + mCallExtras.toString() + ", mediaProfile=" + mMediaProfile.toString() + " }"; } |