Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
package com.google.common.util.concurrent;
import com.google.common.base.MoreObjects;
import com.google.common.base.Preconditions;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executor;
import java.util.concurrent.Future;
/* loaded from: classes3.dex */
public abstract class Futures extends GwtFuturesCatchingSpecialization {
public static void addCallback(ListenableFuture listenableFuture, FutureCallback futureCallback, Executor executor) {
Preconditions.checkNotNull(futureCallback);
listenableFuture.addListener(new CallbackListener(listenableFuture, futureCallback), executor);
}
public static final class CallbackListener implements Runnable {
public final FutureCallback callback;
public final Future future;
public CallbackListener(Future future, FutureCallback futureCallback) {
this.future = future;
this.callback = futureCallback;
}
@Override // java.lang.Runnable
public void run() {
try {
this.callback.onSuccess(Futures.getDone(this.future));
} catch (Error e) {
e = e;
this.callback.onFailure(e);
} catch (RuntimeException e2) {
e = e2;
this.callback.onFailure(e);
} catch (ExecutionException e3) {
this.callback.onFailure(e3.getCause());
}
}
public String toString() {
return MoreObjects.toStringHelper(this).addValue(this.callback).toString();
}
}
public static Object getDone(Future future) {
Preconditions.checkState(future.isDone(), "Future was expected to be done: %s", future);
return Uninterruptibles.getUninterruptibly(future);
}
}