From baf1e51a3f8877d0f0e7e34fc933db8137892f2e Mon Sep 17 00:00:00 2001 From: Jason Mitchell Date: Tue, 23 Aug 2022 21:36:36 -0700 Subject: remove debug print; keep disabled for now --- src/main/java/gregtech/common/render/GT_IconFlipped.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/main/java/gregtech/common') diff --git a/src/main/java/gregtech/common/render/GT_IconFlipped.java b/src/main/java/gregtech/common/render/GT_IconFlipped.java index d4f96fed4f..7cd44a7e70 100644 --- a/src/main/java/gregtech/common/render/GT_IconFlipped.java +++ b/src/main/java/gregtech/common/render/GT_IconFlipped.java @@ -11,8 +11,6 @@ public class GT_IconFlipped implements IIcon { private final boolean flipV; public GT_IconFlipped(IIcon baseIcon, boolean flipU, boolean flipV) { - if(baseIcon == null) - System.out.println("HI"); this.baseIcon = baseIcon; this.flipU = flipU; this.flipV = flipV; -- cgit