apatrida
01/17/2023, 4:15 PMConfiguration
class has a ton of overrides for set(...)
methods. Java and Kotlin K1 can call it fine for a new ExecuteListenerProvider
but K2 can't decide which method and fails on an error.
config.set(ExecuteListenerProvider { ExecutionTimer() })
lists N variations of set()
in an error and can't disambiguate to:
Configuration set(ExecuteListenerProvider... newExecuteListenerProviders);
mglukhikh
01/17/2023, 4:16 PMapatrida
01/17/2023, 4:17 PM