diff options
author | 2024-02-06 15:36:22 -0800 | |
---|---|---|
committer | 2024-02-06 15:36:22 -0800 | |
commit | 1cfeff5046d00d02ba2c554b8686e56dba397e52 (patch) | |
tree | bafb9ced0b11e0cdb079bf5ea2b47bb7a6702c08 | |
parent | d1bca1e1047130520b52b671da20ef26ce111ea2 (diff) |
Update API docs to clarify simultaneous calling restriction with Empty Set
Bug: 323144642
Test: DOCS ONLY
Flag: DOCS ONLY
Change-Id: I4a5686e99321cf24a40fd74151a3d9696efb74a8
-rw-r--r-- | telecomm/java/android/telecom/PhoneAccount.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/telecomm/java/android/telecom/PhoneAccount.java b/telecomm/java/android/telecom/PhoneAccount.java index b7706a926a3d..6bdc43ec2414 100644 --- a/telecomm/java/android/telecom/PhoneAccount.java +++ b/telecomm/java/android/telecom/PhoneAccount.java @@ -810,6 +810,9 @@ public final class PhoneAccount implements Parcelable { * If this setter method is never called or cleared using * {@link #clearSimultaneousCallingRestriction()}, there is no restriction and all * {@link PhoneAccount}s registered to Telecom by this package support simultaneous calling. + * If this setter is called and set as an empty Set, then this {@link PhoneAccount} does + * not support simultaneous calling with any other {@link PhoneAccount}s registered by the + * same application. * <p> * Note: Simultaneous calling restrictions can only be placed on {@link PhoneAccount}s that * were registered by the same application. Simultaneous calling across applications is |