From 32de496d3ed949535be86d6f177353043ec23114 Mon Sep 17 00:00:00 2001 From: Walker Selby Date: Thu, 26 Oct 2023 15:32:56 +0100 Subject: Remove unused imports in DebugView.kt [no changelog] --- src/main/kotlin/moe/nea/firmament/features/debug/DebugView.kt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main/kotlin/moe/nea/firmament/features/debug/DebugView.kt b/src/main/kotlin/moe/nea/firmament/features/debug/DebugView.kt index 799a9b8..4ba8eee 100644 --- a/src/main/kotlin/moe/nea/firmament/features/debug/DebugView.kt +++ b/src/main/kotlin/moe/nea/firmament/features/debug/DebugView.kt @@ -9,21 +9,12 @@ package moe.nea.firmament.features.debug import io.github.cottonmc.cotton.gui.client.CottonHud import io.github.cottonmc.cotton.gui.widget.WBox import io.github.cottonmc.cotton.gui.widget.WDynamicLabel -import io.github.cottonmc.cotton.gui.widget.WLabel import io.github.cottonmc.cotton.gui.widget.data.Axis -import java.util.Optional import java.util.stream.Collectors import kotlin.time.Duration.Companion.seconds -import net.minecraft.scoreboard.Scoreboard -import net.minecraft.scoreboard.Team -import net.minecraft.text.StringVisitable -import net.minecraft.text.Style -import net.minecraft.text.Text -import net.minecraft.util.Formatting import moe.nea.firmament.Firmament import moe.nea.firmament.events.TickEvent import moe.nea.firmament.features.FirmamentFeature -import moe.nea.firmament.util.MC import moe.nea.firmament.util.TimeMark object DebugView : FirmamentFeature { -- cgit