aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWalker Selby <git@walkerselby.com>2023-10-26 15:32:56 +0100
committernea <nea@nea.moe>2023-10-26 19:47:00 +0200
commit32de496d3ed949535be86d6f177353043ec23114 (patch)
tree217522fd38438238a45f01d353be97892c122398
parente887067b7ecfa9d8e040008cca8d26c194f8c1a5 (diff)
downloadFirmament-32de496d3ed949535be86d6f177353043ec23114.tar.gz
Firmament-32de496d3ed949535be86d6f177353043ec23114.tar.bz2
Firmament-32de496d3ed949535be86d6f177353043ec23114.zip
Remove unused imports in DebugView.kt
[no changelog]
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/debug/DebugView.kt9
1 files changed, 0 insertions, 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 {