aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/utils/ExecutorUtil.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/me/shedaniel/rei/utils/ExecutorUtil.java')
-rw-r--r--src/main/java/me/shedaniel/rei/utils/ExecutorUtil.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/main/java/me/shedaniel/rei/utils/ExecutorUtil.java b/src/main/java/me/shedaniel/rei/utils/ExecutorUtil.java
deleted file mode 100644
index 3a7bd6307..000000000
--- a/src/main/java/me/shedaniel/rei/utils/ExecutorUtil.java
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * 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<Runnable> runnableSupplier) {
- runnableSupplier.get().run();
- }
-}