File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
core/src/main/kotlin/com/tschuchort/compiletesting Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff 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()
You can’t perform that action at this time.
0 commit comments