package net.minecraft.client.gui.components.debug; import net.minecraft.world.level.Level; import net.minecraft.world.level.chunk.LevelChunk; import org.jspecify.annotations.Nullable; public class DebugEntryNoop implements DebugScreenEntry { private final boolean isAllowedWithReducedDebugInfo; public DebugEntryNoop() { this(false); } public DebugEntryNoop(final boolean isAllowedWithReducedDebugInfo) { this.isAllowedWithReducedDebugInfo = isAllowedWithReducedDebugInfo; } @Override public void display( final DebugScreenDisplayer displayer, @Nullable final Level serverOrClientLevel, @Nullable final LevelChunk clientChunk, @Nullable final LevelChunk serverChunk ) { } @Override public boolean isAllowed(final boolean reducedDebugInfo) { return this.isAllowedWithReducedDebugInfo || !reducedDebugInfo; } @Override public DebugEntryCategory category() { return DebugEntryCategory.RENDERER; } }