Skip to content

Update Javadoc for FirebaseCrashlytics.java #2492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* Helper class which handles the storage and conversion to strings of key/value pairs with
* heterogenous value types.
* heterogeneous value types.
*/
public class CustomKeysAndValues {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ public void setCustomKey(@NonNull String key, @NonNull String value) {

/**
* Sets multiple custom keys and values that are associated with subsequent fatal and non-fatal
* reports. This method is intended as an alternative to setCustomKey in order to reduce the
* reports. This method is intended as an alternative to `setCustomKey` in order to reduce the
* computational load of writing out multiple key/value pairs at the same time.
*
* <p>Multiple calls to this method with the same key update the value for that key.
Expand All @@ -457,7 +457,7 @@ public void setCustomKey(@NonNull String key, @NonNull String value) {
*
* <p>Accepts a maximum of 64 key/value pairs. If calling this method results in the number of
* custom keys exceeding this limit, only some of the keys will be logged (however many are needed
* to get to 64). Which are logged versus dropped is unpredictable as there is no intrinsic
* to get to 64). Which keys are logged versus dropped is unpredictable as there is no intrinsic
* sorting of keys. Keys or values that exceed 1024 characters are truncated.
*
* @param keysAndValues A dictionary of keys and the values to associate with each key
Expand Down