commit | d4ee3bef3e6c8fa4c5b0a1ff63466c7eda22ceb6 | [log] [tgz] |
---|---|---|
author | Hall Liu <hallliu@google.com> | Fri Mar 10 00:42:22 2017 +0000 |
committer | android-build-merger <android-build-merger@google.com> | Fri Mar 10 00:42:22 2017 +0000 |
tree | a279abb4a1c3adc252f100e387830d93007c7067 | |
parent | 15a2b01441496018af6ac3f03695b20f8eefc458 [diff] | |
parent | 10197de5a4c1ee6e0e6dddb9ccaf318130ad57f6 [diff] |
Merge "Fix comparison bug in InCallServiceInfo" am: 5ce1a7842d am: 10197de5a4 Change-Id: Ie6a8669fa5fdac4e3cc6f192e0090d1e4e057cab
diff --git a/src/com/android/server/telecom/InCallController.java b/src/com/android/server/telecom/InCallController.java index a04be4d..e575097 100644 --- a/src/com/android/server/telecom/InCallController.java +++ b/src/com/android/server/telecom/InCallController.java
@@ -126,7 +126,7 @@ if (mIsExternalCallsSupported != that.mIsExternalCallsSupported) { return false; } - if (mIsSelfManagedCallsSupported != that.mIsExternalCallsSupported) { + if (mIsSelfManagedCallsSupported != that.mIsSelfManagedCallsSupported) { return false; } return mComponentName.equals(that.mComponentName);