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 5fdeade commit dfaf14dCopy full SHA for dfaf14d
firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/metadata/KeysMap.java
@@ -19,6 +19,7 @@
19
import com.google.firebase.crashlytics.internal.common.CommonUtils;
20
import java.util.Collections;
21
import java.util.HashMap;
22
+import java.util.LinkedHashMap;
23
import java.util.Map;
24
25
/** Handles any key/values for metadata. */
@@ -54,6 +55,7 @@ public synchronized boolean setKey(String key, String value) {
54
55
keys.put(sanitizedKey, value == null ? "" : santitizedAttribute);
56
return true;
57
}
58
+ // TODO: Explore using a LinkedHashMap to overwrite keys in this case.
59
Logger.getLogger()
60
.w(
61
"Ignored entry \""
0 commit comments