Skip to content

Commit

Permalink
Also add suppression of UNUSED on all option class files
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmattking committed Jul 29, 2024
1 parent bb78aeb commit 84dacd8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UNUSED")

package info.mking.k2zpl.command.options

enum class ZplBarcodeType {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UNUSED")

package info.mking.k2zpl.command.options

enum class ZplJustification(private val value: Char) {
Expand Down
2 changes: 2 additions & 0 deletions src/main/kotlin/info/mking/k2zpl/command/options/ZplYesNo.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("UNUSED")

package info.mking.k2zpl.command.options

internal enum class ZplYesNo(val value: String) {
Expand Down

0 comments on commit 84dacd8

Please sign in to comment.