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

Commit b623d1c1 authored by Teng Wenxing's avatar Teng Wenxing Committed by Jia Jia
Browse files

Fix arguments in wrong order reported by coverity

Change-Id: I270e30d53c0566e63fa509eacd68d1f3a91d13b7
parent 268cacb2
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -597,19 +597,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);