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

Commit 37868296 authored by Teng Wenxing's avatar Teng Wenxing Committed by android-build-merger
Browse files

Merge "Fix arguments in wrong order reported by coverity" am: 507cd3a7 am:...

Merge "Fix arguments in wrong order reported by coverity" am: 507cd3a7 am: a5b6c64a am: 043d41cb
am: 7ec8873f

Change-Id: Ieb2f6c45741b1d793c341baad8c911b0055573b9
parents 9b1e0d1c 7ec8873f
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -567,19 +567,19 @@ public interface PhoneInternalInterface {
     * setCallForwardingOptions
     * sets a call forwarding option.
     *
     * @param commandInterfaceCFReason is one of the valid call forwarding
     *        CF_REASONS, as defined in
     *        <code>com.android.internal.telephony.CommandsInterface.</code>
     * @param commandInterfaceCFAction is one of the valid call forwarding
     *        CF_ACTIONS, as defined in
     *        <code>com.android.internal.telephony.CommandsInterface.</code>
     * @param commandInterfaceCFReason is one of the valid call forwarding
     *        CF_REASONS, as defined in
     *        <code>com.android.internal.telephony.CommandsInterface.</code>
     * @param dialingNumber is the target phone number to forward calls to
     * @param timerSeconds is used by CFNRy to indicate the timeout before
     *        forwarding is attempted.
     * @param onComplete a callback message when the action is completed.
     */
    void setCallForwardingOption(int commandInterfaceCFReason,
                                 int commandInterfaceCFAction,
    void setCallForwardingOption(int commandInterfaceCFAction,
                                 int commandInterfaceCFReason,
                                 String dialingNumber,
                                 int timerSeconds,
                                 Message onComplete);