basic 1.2.0 changes

This commit is contained in:
tommyskeff
2023-12-22 16:43:52 +00:00
parent 11ed692e75
commit 173e34810c
16 changed files with 799 additions and 500 deletions

View File

@@ -0,0 +1,11 @@
package dev.tommyjs.futur.trace;
import org.jetbrains.annotations.NotNull;
public class TraceUtil {
public static ExecutorTrace getTrace(@NotNull Object function) {
return new ExecutorTrace(function.getClass(), Thread.currentThread().getStackTrace());
}
}