Skip to content

Commit c3308a3

Browse files
Add custom signal limits link and fix Javadoc List Formatting (#6722)
Add link to documentation about custom signal limits ([b/385028620](https://buganizer.corp.google.com/issues/385028620)) and Update setCustomSignals Javadoc List Formatting ([b/390054823](https://buganizer.corp.google.com/issues/390054823))
1 parent 1e8c218 commit c3308a3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

firebase-config/src/main/java/com/google/firebase/remoteconfig/FirebaseRemoteConfig.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -656,16 +656,17 @@ private Task<Void> setDefaultsWithStringsMapAsync(Map<String, String> defaultsSt
656656
* Asynchronously changes the custom signals for this {@link FirebaseRemoteConfig} instance.
657657
*
658658
* <p>Custom signals are subject to limits on the size of key/value pairs and the total
659-
* number of signals. Any calls that exceed these limits will be discarded.
659+
* number of signals. Any calls that exceed these limits will be discarded. See <a
660+
* href="https://firebase.google.com/docs/remote-config/parameters?template_type=client#custom-signal-limits">Custom
661+
* Signal Limits</a>.
660662
*
661663
* @param customSignals The custom signals to set for this instance.
662-
* <ol>
664+
* <ul>
663665
* <li>New keys will add new key-value pairs in the custom signals.
664666
* <li>Existing keys with new values will update the corresponding signals.
665667
* <li>Setting a key's value to {@code null} will remove the associated signal.
666-
* </ol>
668+
* </ul>
667669
*/
668-
// TODO(b/385028620): Add link to documentation about custom signal limits.
669670
@NonNull
670671
public Task<Void> setCustomSignals(@NonNull CustomSignals customSignals) {
671672
return Tasks.call(

0 commit comments

Comments
 (0)