/* * Roughly Enough Items by Danielshe. * Licensed under the MIT License. */ package me.shedaniel.rei.utils; import java.util.function.Supplier; @Deprecated public class ExecutorUtil { private ExecutorUtil() { } public static void execute(Supplier runnableSupplier) { runnableSupplier.get().run(); } }