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

Commit 3b2e36a6 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Remove hidden CallDirection annotation usage for Mainline am: 343e217d am:...

Remove hidden CallDirection annotation usage for Mainline am: 343e217d am: f65d5da0 am: 95762594

Change-Id: I29b27c4bfd1e5c2c39a93665dccaab722c363126
parents 34f1f672 95762594
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -281,17 +281,23 @@ public class ConferenceParticipant implements Parcelable {
    }

    /**
     * @return The direction of the call (incoming/outgoing).
     * @return The direction of the call (incoming/outgoing):
     *         {@link android.telecom.Call.Details#DIRECTION_INCOMING} for incoming calls, or
     *         {@link android.telecom.Call.Details#DIRECTION_OUTGOING} for outgoing calls.
     */
    public @android.telecom.Call.Details.CallDirection int getCallDirection() {
    public int getCallDirection() {
        return mCallDirection;
    }

    /**
     * Sets the direction of the call.
     * @param callDirection Whether the call is incoming or outgoing.
     * @param callDirection Whether the call is incoming or outgoing:
     *                      {@link android.telecom.Call.Details#DIRECTION_INCOMING} for
     *                      incoming calls, or
     *                      {@link android.telecom.Call.Details#DIRECTION_OUTGOING} for
     *                      outgoing calls.
     */
    public void setCallDirection(@Call.Details.CallDirection int callDirection) {
    public void setCallDirection(int callDirection) {
        mCallDirection = callDirection;
    }