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

Commit d5d183ea authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix Handler.Callback.handleMessage javadoc."

parents 5b3d97a8 dcc53572
Loading
Loading
Loading
Loading
+4 −3
Original line number Original line Diff line number Diff line
@@ -76,11 +76,12 @@ public class Handler {
    /**
    /**
     * Callback interface you can use when instantiating a Handler to avoid
     * Callback interface you can use when instantiating a Handler to avoid
     * having to implement your own subclass of Handler.
     * having to implement your own subclass of Handler.
     *
     */
    public interface Callback {
        /**
         * @param msg A {@link android.os.Message Message} object
         * @param msg A {@link android.os.Message Message} object
         * @return True if no further handling is desired
         * @return True if no further handling is desired
         */
         */
    public interface Callback {
        public boolean handleMessage(Message msg);
        public boolean handleMessage(Message msg);
    }
    }