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

Commit 343e217d authored by sqian's avatar sqian Committed by Shuo Qian
Browse files

Remove hidden CallDirection annotation usage for Mainline

Test: Treehugger; no function change
Bug: 148543040
Change-Id: Ic30cfb959785bf4e69250eb4b94317cecde1e9b7
parent 6f904acf
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;
    }