Loading telephony/java/android/telephony/CallAttributes.java +2 −2 Original line number Diff line number Diff line Loading @@ -117,9 +117,9 @@ public class CallAttributes implements Parcelable { CallAttributes s = (CallAttributes) o; return (mPreciseCallState == s.mPreciseCallState return (Objects.equals(mPreciseCallState, s.mPreciseCallState) && mNetworkType == s.mNetworkType && mCallQuality == s.mCallQuality); && Objects.equals(mCallQuality, s.mCallQuality)); } /** Loading telephony/java/android/telephony/PreciseCallState.java +5 −5 Original line number Diff line number Diff line Loading @@ -287,11 +287,11 @@ public final class PreciseCallState implements Parcelable { return false; } PreciseCallState other = (PreciseCallState) obj; return (mRingingCallState != other.mRingingCallState && mForegroundCallState != other.mForegroundCallState && mBackgroundCallState != other.mBackgroundCallState && mDisconnectCause != other.mDisconnectCause && mPreciseDisconnectCause != other.mPreciseDisconnectCause); return (mRingingCallState == other.mRingingCallState && mForegroundCallState == other.mForegroundCallState && mBackgroundCallState == other.mBackgroundCallState && mDisconnectCause == other.mDisconnectCause && mPreciseDisconnectCause == other.mPreciseDisconnectCause); } @Override Loading Loading
telephony/java/android/telephony/CallAttributes.java +2 −2 Original line number Diff line number Diff line Loading @@ -117,9 +117,9 @@ public class CallAttributes implements Parcelable { CallAttributes s = (CallAttributes) o; return (mPreciseCallState == s.mPreciseCallState return (Objects.equals(mPreciseCallState, s.mPreciseCallState) && mNetworkType == s.mNetworkType && mCallQuality == s.mCallQuality); && Objects.equals(mCallQuality, s.mCallQuality)); } /** Loading
telephony/java/android/telephony/PreciseCallState.java +5 −5 Original line number Diff line number Diff line Loading @@ -287,11 +287,11 @@ public final class PreciseCallState implements Parcelable { return false; } PreciseCallState other = (PreciseCallState) obj; return (mRingingCallState != other.mRingingCallState && mForegroundCallState != other.mForegroundCallState && mBackgroundCallState != other.mBackgroundCallState && mDisconnectCause != other.mDisconnectCause && mPreciseDisconnectCause != other.mPreciseDisconnectCause); return (mRingingCallState == other.mRingingCallState && mForegroundCallState == other.mForegroundCallState && mBackgroundCallState == other.mBackgroundCallState && mDisconnectCause == other.mDisconnectCause && mPreciseDisconnectCause == other.mPreciseDisconnectCause); } @Override Loading