Make makeExecutor public to fix mod conflict

This commit is contained in:
Spottedleaf
2024-05-22 16:53:54 -07:00
parent 5ec8a635a7
commit 60fe328a92

View File

@@ -56,7 +56,7 @@ public abstract class UtilMixin {
* @author Spottedleaf
*/
@Overwrite
private static ExecutorService makeExecutor(final String name) {
public static ExecutorService makeExecutor(final String name) {
final int threads = getThreadCounts(1, getMaxThreads());
if (threads <= 0) {
return MoreExecutors.newDirectExecutorService();