Skip to content

Commit

Permalink
Make makeExecutor public to fix mod conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Spottedleaf committed May 22, 2024
1 parent 5ec8a63 commit 60fe328
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private static int getThreadCounts(final int min, final int max) {
* @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();
Expand Down

0 comments on commit 60fe328

Please sign in to comment.