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

Commit 43563896 authored by Yang Ni's avatar Yang Ni
Browse files

Elaborate on description of ScriptGroup.execute

b/21039492

ScriptGroup.execute(Object...): Describe input and output order.

Change-Id: I88668338ab2ac50e602b97891b86509c81dedf4d
parent f038295e
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -400,8 +400,10 @@ public final class ScriptGroup extends BaseObj {
    /**
    /**
     * Executes a script group
     * Executes a script group
     *
     *
     * @param inputs inputs to the script group
     * @param inputs Values for inputs to the script group, in the order as the
     * @return outputs of the script group as an array of objects
     *        inputs are added via {@link Builder2#addInput}.
     * @return Outputs of the script group as an array of objects, in the order
     *         as futures are passed to {@link Builder2#create}.
     */
     */


    public Object[] execute(Object... inputs) {
    public Object[] execute(Object... inputs) {