mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-18 06:25:13 +02:00
get rid of interface{} since we now require Go 1.18
This commit is contained in:
@@ -15,11 +15,11 @@ import (
|
||||
"kitty/tools/utils"
|
||||
)
|
||||
|
||||
func debug(args ...interface{}) {
|
||||
func debug(args ...any) {
|
||||
tty.DebugPrintln(args...)
|
||||
}
|
||||
|
||||
func debugf(format string, args ...interface{}) {
|
||||
func debugf(format string, args ...any) {
|
||||
debug(fmt.Sprintf(format, args...))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user