Rabbit-R1/android (non root)/java/sources/com/google/common/util/concurrent/Runnables.java
2024-05-21 17:08:36 -04:00

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() {
}
}