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