⁠
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.platform.forge.inspections.sideonly
- import com.intellij.openapi.util.Key
- enum class Side {
- CLIENT,
- SERVER,
- NONE,
- INVALID;
- companion object {
- val KEY = Key<Side>("MC_DEV_SIDE")
- }
- }
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.platform.forge.inspections.sideonly
- import com.intellij.openapi.util.Key
- enum class Side {
- CLIENT,
- SERVER,
- NONE,
- INVALID,
- ;
- companion object {
- val KEY = Key<Side>("MC_DEV_SIDE")
- }
- }