Fix smol syntax thingy (first 2025 commit woo!)
All checks were successful
PRs & Pushes / build-jars (push) Successful in 6m26s
PRs & Pushes / build-apidoc (push) Successful in 6m1s
PRs & Pushes / test (push) Successful in 7m3s

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 * 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. * Licensed under the GNU General Public License v3.
* *
* This program is free software: you can redistribute it and/or modify * 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() val instance: PrintlnAdapter = PrintlnAdapter()
} }
override fun handle(call: Call, format: String) { override fun handle(call: Call, format: String) = println(format)
println(format)
}
} }