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

Commit de58e748 authored by Steve Kondik's avatar Steve Kondik
Browse files

telecom: Fix supplementary service notifications patch

Change-Id: I053c8867a3ab339210b008d7f2191994a0a783cc
parent 725ca947
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -964,13 +964,6 @@ public abstract class Connection implements IConferenceable {
        return mCallProperties;
    }

    /**
     * Returns the connection's {@link CallProperties}
     */
    public final int getCallProperties() {
        return mCallProperties;
    }

    /**
     * Sets the value of the {@link #getAddress()} property.
     *
+1 −5
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ public final class ParcelableConnection implements Parcelable {
            int callSubstate) {
               mPhoneAccount = phoneAccount;
        mState = state;
        mCapabilities = capabilities;
        mConnectionCapabilities = capabilities;
        mProperties = 0;
        mAddress = address;
        mAddressPresentation = addressPresentation;
@@ -137,10 +137,6 @@ public final class ParcelableConnection implements Parcelable {
        return mProperties;
    }

    public int getProperties() {
        return mProperties;
    }

    public Uri getHandle() {
        return mAddress;
    }
+0 −19
Original line number Diff line number Diff line
@@ -558,15 +558,6 @@ public final class RemoteConnection {
        return mCallProperties;
    }

    /**
     * @return A bitmask of the properties of the {@code RemoteConnection}, as defined in
     *         {@link CallProperties}.
     *  @hide
     */
    public int getCallProperties() {
        return mCallProperties;
    }

    /**
     * Determines if the audio mode of this {@code RemoteConnection} is VOIP.
     *
@@ -917,16 +908,6 @@ public final class RemoteConnection {
        }
    }

    /**
     * @hide
     */
    void setCallProperties(int callProperties) {
        mCallProperties = callProperties;
        for (Callback c : mCallbacks) {
            c.onCallPropertiesChanged(this, callProperties);
        }
    }

    /**
     * @hide
     */