From 0be5c158e7e2d1e4f27e738cae97e6cc7f004f79 Mon Sep 17 00:00:00 2001 From: Xander Date: Tue, 14 Nov 2023 13:15:23 +0800 Subject: [PATCH] remove unused record class --- src/main/java/mekanism/client/gui/GuiUtils.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/mekanism/client/gui/GuiUtils.java b/src/main/java/mekanism/client/gui/GuiUtils.java index f24a523944d..197539c6f1c 100644 --- a/src/main/java/mekanism/client/gui/GuiUtils.java +++ b/src/main/java/mekanism/client/gui/GuiUtils.java @@ -242,9 +242,6 @@ public enum TilingDirection { } } - private record NineSliceCache(ResourceLocation texture, int x, int y, int width, int height, int sliceWidth, int sliceHeight, int uWidth, int vHeight, int uOffset, - int vOffset, int textureWidth, int textureHeight) {} - // like guiGraphics.blitNineSlicedSized but uses one BufferBuilder public static void blitNineSlicedSized(GuiGraphics guiGraphics, ResourceLocation texture, int x, int y, int width, int height, int sliceWidth, int sliceHeight, int uWidth, int vHeight, int uOffset, int vOffset, int textureWidth, int textureHeight) { ProfilerFiller profiler = Minecraft.getInstance().getProfiler();