fancy unicode symbols B)

This commit is contained in:
dfsek
2021-04-12 01:16:26 -07:00
parent f8e7e343cb
commit 23fb7753ab
2 changed files with 26 additions and 7 deletions

View File

@@ -29,6 +29,7 @@ public class ProfilerTest {
PROFILER.push("thing");
Thread.sleep(1);
doOtherThing();
thing4();
PROFILER.pop("thing");
}
@@ -36,6 +37,7 @@ public class ProfilerTest {
PROFILER.push("thing2");
Thread.sleep(2);
doThirdOtherThing();
thing4();
PROFILER.pop("thing2");
}
@@ -44,4 +46,10 @@ public class ProfilerTest {
Thread.sleep(2);
PROFILER.pop("thing3");
}
private static void thing4() throws InterruptedException {
PROFILER.push("thing4");
Thread.sleep(2);
PROFILER.pop("thing4");
}
}