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

Commit f65d5da0 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Remove hidden CallDirection annotation usage for Mainline am: 343e217d

Change-Id: I517a8b757d1943799702ed5f48aa90f462082922
parents 2a838d3e 343e217d
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;
    }