Fix smol syntax thingy (first 2025 commit woo!)
Some checks failed
PRs & Pushes / test (push) Failing after 39s
PRs & Pushes / build-jars (push) Failing after 37s
PRs & Pushes / build-apidoc (push) Failing after 34m56s

This commit is contained in:
JeremyStar™ 2025-01-01 05:52:46 +01:00
parent 9f538fe685
commit 9685729de9
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -1,6 +1,6 @@
/*
* STAROPENSOURCE ENGINE SOURCE FILE
* Copyright (c) 2024 The StarOpenSource Engine Authors
* Copyright (c) 2025 The StarOpenSource Engine Authors
* Licensed under the GNU General Public License v3.
*
* This program is free software: you can redistribute it and/or modify
@ -46,7 +46,5 @@ class PrintlnAdapter private constructor(): Adapter {
val instance: PrintlnAdapter = PrintlnAdapter()
}
override fun handle(call: Call, format: String) {
println(format)
}
override fun handle(call: Call, format: String) = println(format)
}