jlleitschuh
08/01/2018, 6:21 PMSymbol is declared in module 'java.base' which does not export package 'kotlin'
This is the code:
object LogService {
@JvmStatic
fun getLogger(): Logger {
val t = Throwable()
t.fillInStackTrace() // This is the method that it complains on
return LoggerFactory.getLogger(t.stackTrace[1].className)
}
}
Anyone experienced this before?
I'm running IntelliJ 2018.1
with Kotlin version: 1.2.50