I'm trying to implement a `GlobalStatementIntercep...
# exposed
m
I'm trying to implement a
GlobalStatementInterceptor
(With no experience with the
ServiceLoader
idiom) and I'm having trouble stepping through the
Copy code
ServiceLoader.load(GlobalStatementInterceptor::class.java, GlobalStatementInterceptor::class.java.classLoader).forEach {
                globalInterceptors.add(it)
            }
in org/jetbrains/exposed/sql/Transaction.kt - I keep getting errors along the lines of
Copy code
java.lang.IllegalStateException : No implClassName for @kotlin.internal.InlineOnly public inline operator fun <T> kotlin.Lazy<T>.getValue(thisRef: kotlin.Any?, property: kotlin.reflect.KProperty<*>): T defined in kotlin[DeserializedSimpleFunctionDescriptor@1494793c]
Could anyone help me out here?