Skip to content

Commit 1e0f391

Browse files
committed
Remove singleModule compiler argument
JetBrains/kotlin@a76de14
1 parent bd0743c commit 1e0f391

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

core/src/main/kotlin/com/tschuchort/compiletesting/KotlinCompilation.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,6 @@ class KotlinCompilation : AbstractKotlinCompilation<K2JVMCompilerArguments>() {
126126
/** Path to JSON file to dump Java to Kotlin declaration mappings */
127127
var declarationsOutputPath: File? = null
128128

129-
/** Combine modules for source files and binary dependencies into a single module */
130-
var singleModule: Boolean = false
131-
132129
/** Suppress the \"cannot access built-in declaration\" error (useful with -no-stdlib) */
133130
var suppressMissingBuiltinsError: Boolean = false
134131

@@ -356,7 +353,6 @@ class KotlinCompilation : AbstractKotlinCompilation<K2JVMCompilerArguments>() {
356353
if(declarationsOutputPath != null)
357354
args.declarationsOutputPath = declarationsOutputPath!!.toString()
358355

359-
args.singleModule = singleModule
360356

361357
if(javacArguments.isNotEmpty())
362358
args.javacArguments = javacArguments.toTypedArray()

0 commit comments

Comments
 (0)