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

Commit dcc53572 authored by Pavel Grafov's avatar Pavel Grafov
Browse files

Fix Handler.Callback.handleMessage javadoc.

Currently arguments and return value annotations are applied to the
whole interface and aren't rendered at all:
https://developer.android.com/reference/android/os/Handler.Callback.html#handleMessage(android.os.Message)

Test: nothing to test.
Change-Id: I8cb44f7a6c339971b770e9bf769efee8294b4d28
Bug:36127602
parent 2b2e769d
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -76,11 +76,12 @@ public class Handler {
    /**
     * Callback interface you can use when instantiating a Handler to avoid
     * having to implement your own subclass of Handler.
     *
     */
    public interface Callback {
        /**
         * @param msg A {@link android.os.Message Message} object
         * @return True if no further handling is desired
         */
    public interface Callback {
        public boolean handleMessage(Message msg);
    }