Fix smol syntax thingy (first 2025 commit woo!)
This commit is contained in:
parent
9f538fe685
commit
9685729de9
1 changed files with 2 additions and 4 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue