Skip to content

Commit aaf3b98

Browse files
committed
Remove public
1 parent 124c00a commit aaf3b98

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/FirebaseCrashlytics.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -371,16 +371,6 @@ public void setCustomKeys(@NonNull CustomKeysAndValues keysAndValues) {
371371
core.setCustomKeys(keysAndValues.keysAndValues);
372372
}
373373

374-
/**
375-
* Sets an internal key and value that are associated with subsequent fatal and non-fatal reports.
376-
*
377-
* @param key A unique key
378-
* @param value A value to be associated with the given key
379-
*/
380-
public void setInternalKey(@NonNull String key, String value) {
381-
core.setInternalKey(key, value);
382-
}
383-
384374
// region Unsent report management.
385375

386376
/**

firebase-crashlytics/src/main/java/com/google/firebase/crashlytics/internal/common/CrashlyticsCore.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,9 @@ public void setCustomKeys(Map<String, String> keysAndValues) {
356356
* trimmed ({@link String#trim()}), and keys or values that exceed 1024 characters will be
357357
* truncated.
358358
*
359+
* <p>IMPORTANT: This method is accessed via reflection and JNI. Do not change the type without
360+
* updating the SDKs that depend on it.
361+
*
359362
* @throws NullPointerException if key is null.
360363
*/
361364
public void setInternalKey(String key, String value) {

0 commit comments

Comments
 (0)