File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
compiler/cli/src/org/jetbrains/kotlin/cli/jvm Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -277,9 +277,9 @@ object JvmRuntimeVersionsConsistencyChecker {
277
277
val runtimeComponent = manifest?.mainAttributes?.getValue(KOTLIN_RUNTIME_COMPONENT_ATTRIBUTE )
278
278
return when (runtimeComponent) {
279
279
KOTLIN_RUNTIME_COMPONENT_MAIN ->
280
- FileKind .Runtime (manifest.getKotlinLanguageVersion(), isCoreComponent = false )
280
+ FileKind .Runtime (manifest!! .getKotlinLanguageVersion(), isCoreComponent = false )
281
281
KOTLIN_RUNTIME_COMPONENT_CORE ->
282
- FileKind .Runtime (manifest.getKotlinLanguageVersion(), isCoreComponent = true )
282
+ FileKind .Runtime (manifest!! .getKotlinLanguageVersion(), isCoreComponent = true )
283
283
null -> when {
284
284
jarRoot.findFileByRelativePath(KOTLIN_STDLIB_MODULE ) == null &&
285
285
jarRoot.findFileByRelativePath(KOTLIN_REFLECT_MODULE ) == null -> FileKind .Irrelevant
You can’t perform that action at this time.
0 commit comments