diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-01 23:00:53 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-01 23:00:53 +0100 |
commit | 8b410fbdf2cffb3ceaa51bbea150f5165848bc37 (patch) | |
tree | e4b4ec4ba24a7edbefa45b7deb2503b74214ee02 /src/main/kotlin/util/ErrorUtil.kt | |
parent | 653454e290a1bb6142e2bb40947239c2e450820b (diff) | |
download | Firmament-8b410fbdf2cffb3ceaa51bbea150f5165848bc37.tar.gz Firmament-8b410fbdf2cffb3ceaa51bbea150f5165848bc37.tar.bz2 Firmament-8b410fbdf2cffb3ceaa51bbea150f5165848bc37.zip |
Add tint override to texture packs
Diffstat (limited to 'src/main/kotlin/util/ErrorUtil.kt')
-rw-r--r-- | src/main/kotlin/util/ErrorUtil.kt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/kotlin/util/ErrorUtil.kt b/src/main/kotlin/util/ErrorUtil.kt index 4f229af..afecf25 100644 --- a/src/main/kotlin/util/ErrorUtil.kt +++ b/src/main/kotlin/util/ErrorUtil.kt @@ -7,10 +7,24 @@ object ErrorUtil { Thread.currentThread().stackTrace.any { it.className.startsWith("org.junit.") } || Firmament.DEBUG } + inline fun softCheck(message: String, func: () -> Boolean) { + if (!aggressiveErrors) return + if (func()) return + error(message) + } + @Suppress("NOTHING_TO_INLINE") // Suppressed since i want the logger to not pick up the ErrorUtil stack-frame inline fun softError(message: String) { if (aggressiveErrors) error(message) else Firmament.logger.error(message) } + inline fun <T : Any> notNullOr(nullable: T?, message: String, orElse: () -> T): T { + if (nullable == null) { + softError(message) + return orElse() + } + return nullable + } + } |