Skip to content

Commit ddc169f

Browse files
authored
Fix Javadoc in FirebaseCrashlytics (#6252)
Fix Javadoc for `isCrashlyticsCollectionEnabled()` in FirebaseCrashlytics
1 parent 10fa49c commit ddc169f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

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

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -453,14 +453,16 @@ public boolean didCrashOnPreviousExecution() {
453453
}
454454

455455
/**
456-
* Indicates whether or not automatic data collection is enabled
456+
* Indicates whether or not automatic data collection is enabled.
457457
*
458458
* @return In order of priority:
459-
* <p>If {@link #setCrashlyticsCollectionEnabled(boolean)} is called with a value, use it</p>
460-
*
461-
* <p>If the <b>firebase_crashlytics_collection_enabled</b> key is in your app’s AndroidManifest.xml, use it</p>
462-
*
463-
* <p>Otherwise, use the default {@link FirebaseApp#isDataCollectionDefaultEnabled()} in FirebaseApp</p>
459+
* <ul>
460+
* <li>If {@link #setCrashlyticsCollectionEnabled(boolean)} is called with a value, use it.
461+
* <li>If the <b>firebase_crashlytics_collection_enabled</b> key is in your app’s
462+
* AndroidManifest.xml, use it.
463+
* <li>Otherwise, use the default {@link FirebaseApp#isDataCollectionDefaultEnabled()} in
464+
* FirebaseApp.
465+
* </ul>
464466
*/
465467
public boolean isCrashlyticsCollectionEnabled() {
466468
return core.isCrashlyticsCollectionEnabled();

0 commit comments

Comments
 (0)