mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
18 lines
468 B
Java
18 lines
468 B
Java
package com.google.common.util.concurrent;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public final class Runnables {
|
|
private static final Runnable EMPTY_RUNNABLE = new Runnable() { // from class: com.google.common.util.concurrent.Runnables.1
|
|
@Override // java.lang.Runnable
|
|
public void run() {
|
|
}
|
|
};
|
|
|
|
public static Runnable doNothing() {
|
|
return EMPTY_RUNNABLE;
|
|
}
|
|
|
|
private Runnables() {
|
|
}
|
|
}
|