chore: Lint code

This commit is contained in:
oSumAtrIX 2024-03-03 00:25:28 +01:00
parent b69226dd26
commit 03cd9f7f54
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4
2 changed files with 2 additions and 3 deletions

View file

@ -12,7 +12,6 @@ import java.util.jar.JarFile
import java.util.logging.Logger import java.util.logging.Logger
import kotlin.reflect.KClass import kotlin.reflect.KClass
/** /**
* A set of [Patch]es. * A set of [Patch]es.
*/ */
@ -74,7 +73,7 @@ sealed class PatchBundleLoader private constructor(
if (!silent) { if (!silent) {
logger.fine( logger.fine(
"Patch class '$name' has no INSTANCE field, therefor not a singleton. " + "Patch class '$name' has no INSTANCE field, therefor not a singleton. " +
"Attempting to instantiate it.", "Attempting to instantiate it.",
) )
} }
@ -84,7 +83,7 @@ sealed class PatchBundleLoader private constructor(
if (!silent) { if (!silent) {
logger.severe( logger.severe(
"Patch class '$name' is not singleton and has no suitable constructor, " + "Patch class '$name' is not singleton and has no suitable constructor, " +
"therefor cannot be instantiated and is ignored.", "therefor cannot be instantiated and is ignored.",
) )
} }