From 2e4e020dafdf73d9614e16c0621c7135152eba54 Mon Sep 17 00:00:00 2001 From: William Ferguson Date: Mon, 5 Sep 2016 13:45:37 +1000 Subject: [PATCH] Clarified documentation for ErrorReport#checkReportsOnApplicationStart --- src/main/java/org/acra/ErrorReporter.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/acra/ErrorReporter.java b/src/main/java/org/acra/ErrorReporter.java index b59e605a1a..6b6cd76051 100644 --- a/src/main/java/org/acra/ErrorReporter.java +++ b/src/main/java/org/acra/ErrorReporter.java @@ -304,7 +304,12 @@ public void setEnabled(boolean enabled) { /** * This method looks for pending reports and does the action required depending on the interaction mode set. * - * @deprecated since 4.8.0 No replacement. Whether to send report on app start is controlled by {@link ACRA#init(Application, ACRAConfiguration, boolean)}. + * There is no need to call this method as ACRA will by default check for errors on report start. + * + * Whether ACRA checks for reports on app start is controlled by {@link ACRA#init(Application, ACRAConfiguration, boolean)}, + * but the default is that it will. + * + * @deprecated since 4.8.0 No replacement. */ @SuppressWarnings( " unused" ) public void checkReportsOnApplicationStart() {