- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
28 lines
805 B
Java
28 lines
805 B
Java
package com.facebook.bolts;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import com.facebook.bolts.Task;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class UnobservedErrorNotifier {
|
|
private Task<?> task;
|
|
|
|
public final void setObserved() {
|
|
this.task = null;
|
|
}
|
|
|
|
public UnobservedErrorNotifier(Task<?> task) {
|
|
this.task = task;
|
|
}
|
|
|
|
@VisibleForTesting(otherwise = 4)
|
|
public final void finalize() {
|
|
Task.UnobservedExceptionHandler unobservedExceptionHandler;
|
|
Task<?> task = this.task;
|
|
if (task == null || (unobservedExceptionHandler = Task.Companion.getUnobservedExceptionHandler()) == null) {
|
|
return;
|
|
}
|
|
unobservedExceptionHandler.unobservedException(task, new UnobservedTaskException(task.getError()));
|
|
}
|
|
}
|