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

Commit df119b70 authored by Russell Myers's avatar Russell Myers
Browse files

Fix binderDied documentation.

Developer documentation for this does not link appropriately nor is the
paragraph indentation correct.

Bug: n/a
Flag: EXEMPT doc change
Test: m
Change-Id: I0a05ee09f0fbc3cdf34db10354980e8e1c270794
parent 7c39c885
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -322,15 +322,15 @@ public interface IBinder {
         * The function called when the process hosting an IBinder
         * has gone away.
         *
         * This callback will be called from any binder thread like any other binder
         * <p>This callback will be called from any binder thread like any other binder
         * transaction. If the process receiving this notification is multithreaded
         * then synchronization may be required because other threads may be executing
         * at the same time.
         *
         * No locks are held in libbinder when {@link binderDied} is called.
         * <p>No locks are held in libbinder when {@link #binderDied} is called.
         *
         * There is no need to call {@link unlinkToDeath} in the binderDied callback.
         * The binder is already dead so {@link unlinkToDeath} is a no-op.
         * <p>There is no need to call {@link #unlinkToDeath} in the binderDied callback.
         * The binder is already dead so {@link #unlinkToDeath} is a no-op.
         * It will be unlinked when the last local reference of that binder proxy is
         * dropped.
         *