diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/minecraft/ProfilerWrapper.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/minecraft/ProfilerWrapper.java index 3770e964f..15b004e3d 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/minecraft/ProfilerWrapper.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/minecraft/ProfilerWrapper.java @@ -36,14 +36,14 @@ public class ProfilerWrapper implements IProfilerWrapper /** starts a new section inside the currently running section */ @Override - public void push(String newSection) { this.profiler.push(newSection); } + public void push(String newSection) { /*this.profiler.push(newSection);*/ } /** ends the currently running section and starts a new one */ @Override - public void popPush(String newSection) { this.profiler.popPush(newSection); } + public void popPush(String newSection) { /*this.profiler.popPush(newSection);*/ } /** ends the currently running section */ @Override - public void pop() { this.profiler.pop(); } + public void pop() { /*this.profiler.pop();*/ } }