improve performance in deep operations

This commit is contained in:
dfsek
2021-04-11 23:24:44 -07:00
parent 5d4bdb431b
commit 168c0ced13
2 changed files with 23 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ public class ProfilerTest {
//@Test
public static void main(String... a) throws InterruptedException {
Profiler.INSTANCE.start();
for(int i = 0; i < 100; i++) {
for(int i = 0; i < 1000; i++) {
doThing();
}