Ok, the issue does get solved if do: ```class Tena...
# hibernate
y
Ok, the issue does get solved if do:
Copy code
class 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 🤔