Youssef Habri
11/03/2023, 7:52 AMclass TenantSchemaConnectionProvider : MultiTenantConnectionProvider {    
    override fun isUnwrappableAs(@NotNull unwrapType: Class<*>): Boolean {
        return false
    }
    override fun <T> unwrap(@NotNull unwrapType: Class<T>): T? {
        return null
    }
    // ...
}
But, the IDE still complains that it's wrong.
The compiler accepts it tho 🤔