We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dda33f3 commit c285209Copy full SHA for c285209
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/metadata/UserMetadata.java
@@ -149,7 +149,7 @@ public void setUserId(String identifier) {
149
*/
150
public Map<String, String> getCustomKeys(Map<String, String> eventKeys) {
151
// In case of empty event keys, preserve existing behavior.
152
- if (eventKeys.isEmpty()) return customKeys.getKeys();
+ if (eventKeys.isEmpty()) { return customKeys.getKeys(); }
153
154
// Otherwise merge the event keys with custom keys as appropriate.
155
Map<String, String> globalKeys = customKeys.getKeys();
0 commit comments