From d1e16a47819509ed645bb93e1a173e0a97025cef Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 8 Jan 2025 19:25:29 +0100 Subject: build: Move mod to subproject --- src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt (limited to 'src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt') diff --git a/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt b/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt deleted file mode 100644 index fd5ed3d..0000000 --- a/src/main/kotlin/moe/nea/ledger/config/DebugOptions.kt +++ /dev/null @@ -1,13 +0,0 @@ -package moe.nea.ledger.config - -import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean -import io.github.notenoughupdates.moulconfig.annotations.ConfigOption - -class DebugOptions { - @ConfigOption(name = "Log entries to chat", - desc = "Appends all logged entries into the chat as they are logged. This option does not persist on restarts.") - @Transient - @ConfigEditorBoolean - @JvmField - var logEntries = false -} -- cgit