Innokentiy Struchkov

Results 1 comments of Innokentiy Struchkov

Workaround for Kotlin: ```kotlin class MyClassFactory @Inject constructor( private val serviceLocator: ServiceLocator ) : Factory { private fun getRequestContext() = serviceLocator.getService(ContainerRequestContext::class.java) override fun provide(): MyClass { getMyClass(getRequestContext()) } private fun...