aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-09 13:46:42 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-09 13:46:42 +0200
commita2078cb0e4e5bf304c3172ca0cacb30f81ad0e0e (patch)
treecfe5a8b40374920daa21225b747ad9ee6514f68b
parent1275efbfd79b59661920baca0a2ae852da907d7e (diff)
downloadskyhanni-a2078cb0e4e5bf304c3172ca0cacb30f81ad0e0e.tar.gz
skyhanni-a2078cb0e4e5bf304c3172ca0cacb30f81ad0e0e.tar.bz2
skyhanni-a2078cb0e4e5bf304c3172ca0cacb30f81ad0e0e.zip
remove dead code
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt
index 12ca17362..83b1f0828 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt
@@ -7,7 +7,6 @@ import at.hannibal2.skyhanni.config.ConfigManager
import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.config.core.config.Position
import at.hannibal2.skyhanni.data.HypixelData
-import at.hannibal2.skyhanni.data.model.Graph
import at.hannibal2.skyhanni.events.GuiKeyPressEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
@@ -44,7 +43,6 @@ import at.hannibal2.skyhanni.utils.NEUItems.getPriceOrNull
import at.hannibal2.skyhanni.utils.NumberUtil.addSeparators
import at.hannibal2.skyhanni.utils.OSUtils
import at.hannibal2.skyhanni.utils.ReflectionUtils.makeAccessible
-import at.hannibal2.skyhanni.utils.RenderUtils.draw3DPathWithWaypoint
import at.hannibal2.skyhanni.utils.RenderUtils.drawDynamicText
import at.hannibal2.skyhanni.utils.RenderUtils.renderRenderables
import at.hannibal2.skyhanni.utils.RenderUtils.renderString
@@ -61,7 +59,6 @@ import net.minecraft.item.ItemStack
import net.minecraft.nbt.NBTTagCompound
import net.minecraftforge.common.MinecraftForge
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
-import java.awt.Color
import java.io.File
import kotlin.time.Duration.Companion.seconds
@@ -119,8 +116,6 @@ class SkyHanniDebugsAndTests {
ChatUtils.chat("set test waypoint")
}
- var path: Graph = Graph(emptyList())
-
fun testCommand(args: Array<String>) {
SoundUtils.playBeepSound()
// val a = Thread { OSUtils.copyToClipboard("123") }
@@ -430,11 +425,6 @@ class SkyHanniDebugsAndTests {
}
@SubscribeEvent
- fun onTestGraphPath(event: LorenzRenderWorldEvent) {
- event.draw3DPathWithWaypoint(path, Color.GREEN, 8, true)
- }
-
- @SubscribeEvent
fun onShowInternalName(event: LorenzToolTipEvent) {
if (!LorenzUtils.inSkyBlock) return
if (!debugConfig.showInternalName) return