This commit is contained in:
bskjon 2025-03-15 03:03:07 +01:00
parent 364ce23892
commit 9b4a177529

View File

@ -17,7 +17,7 @@ data class UnknownEvent(
inline fun <reified T: Event> Event.az(): T? { inline fun <reified T: Event> Event.az(): T? {
return if (this !is T) { return if (this !is T) {
System.err.println("${this::class.java.name} is not a type of ${T::class.java.name}") //System.err.println("${this::class.java.name} is not a type of ${T::class.java.name}")
null null
} else this } else this
} }