⁠
kyle wood: Fix up all duplicaate code warnings
Also messed up the ktlint configuration trying to upgrade it, but future
versions are still a broken mess. Sorry about that.
Also messed up the ktlint configuration trying to upgrade it, but future
versions are still a broken mess. Sorry about that.
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.nbt.editor
- enum class CompressionSelection(private val selectionName: String) {
- GZIP("GZipped"),
- UNCOMPRESSED("Uncompressed");
- override fun toString() = selectionName
- }
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.nbt.editor
- enum class CompressionSelection(private val selectionName: String) {
- GZIP("GZipped"),
- UNCOMPRESSED("Uncompressed"),
- ;
- override fun toString() = selectionName
- }