From 275ecb78c38e702f1857431bfc93560c27179af0 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Wed, 8 Apr 2026 07:44:24 -0500 Subject: [PATCH] temporarily disable profiling done due to bug with push/pop imbalance --- .../common/wrappers/minecraft/ProfilerWrapper.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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();*/ } }