diff options
| author | 2023-11-21 08:31:02 +0000 | |
|---|---|---|
| committer | 2023-11-21 08:32:38 +0000 | |
| commit | ec40e651af5f15a6657ce7ad655f36c5a41c4974 (patch) | |
| tree | 93b6f49f2b192924fdc820e81b90c94bff59d64a | |
| parent | a5766dabf3f8225df7260deed7525952b0f781b8 (diff) | |
Update documentation on binder proxy limit.
Change-Id: I3d4bd3ce473a775e81acdfd035cb610eedd9408e
| -rw-r--r-- | core/java/android/os/BinderProxy.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/os/BinderProxy.java b/core/java/android/os/BinderProxy.java index f817fb8dcaed..1100731702a2 100644 --- a/core/java/android/os/BinderProxy.java +++ b/core/java/android/os/BinderProxy.java @@ -82,8 +82,8 @@ public final class BinderProxy implements IBinder { private static final int MAIN_INDEX_SIZE = 1 << LOG_MAIN_INDEX_SIZE; private static final int MAIN_INDEX_MASK = MAIN_INDEX_SIZE - 1; /** - * Debuggable builds will throw an BinderProxyMapSizeException if the number of - * map entries exceeds: + * We will throw a BinderProxyMapSizeException if the number of map entries + * exceeds: */ private static final int CRASH_AT_SIZE = 25_000; |