mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
The standard way of loading resources with built-ins metadata from the current class loader no longer works in the modular mode on Java 9 because the current class loader is for module 'kotlin.reflect', but the metadata is located in the module 'kotlin.stdlib'. On Java 9, we now use the class loader of 'kotlin.stdlib' to load these resources. #KT-21266 Fixed
4 lines
82 B
Java
Vendored
4 lines
82 B
Java
Vendored
module namedWithIndirectDependencyViaOtherModule {
|
|
requires kotlin.reflect;
|
|
}
|