I see the source code in ErrorReporter.java of ACRA Ver4.5 ,Line380
handleException(e, ACRA.getConfig().mode(), false, true);
} catch (Throwable fatality) {
// ACRA failed. Prevent any recursive call to
// ACRA.uncaughtException(), let the native reporter do its job.
if (mDfltExceptionHandler != null) {
mDfltExceptionHandler.uncaughtException(t, e);
//Wrong Coding ? why call uncaughtException again?
}
}
The annotation said prevent recursive call to ACRA.uncaughtException
,However,the following if condition call uncaughtException again ,is it a bug ?
Original issue reported on code.google.com by won1...@gmail.com on 3 Apr 2014 at 2:33
Original issue reported on code.google.com by
won1...@gmail.com
on 3 Apr 2014 at 2:33