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

Commit 83c9a77d authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix typos and formatting in DeadObjectException JavaDoc" into main

parents 3873ea0d 02b644fd
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ import android.os.RemoteException;
 * receive this error from an app, at a minimum, you should
 * recover by resetting the connection. For instance, you should
 * drop the binder, clean up associated state, and reset your
 * connection to the service which through this error. In order
 * connection to the service which threw this error. In order
 * to simplify your error recovery paths, you may also want to
 * "simply" restart your process. However, this may not be an
 * option if the service you are talking to is unreliable or
@@ -34,9 +34,11 @@ import android.os.RemoteException;
 *
 * If this isn't from a service death and is instead from a
 * low-level binder error, it will be from:
 * - a oneway call queue filling up (too many oneway calls)
 * - from the binder buffer being filled up, so that the transaction
 * <ul>
 * <li> a one-way call queue filling up (too many one-way calls)
 * <li> from the binder buffer being filled up, so that the transaction
 *      is rejected.
 * </ul>
 *
 * In these cases, more information about the error will be
 * logged. However, there isn't a good way to differentiate