mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Use a val.
This commit is contained in:
parent
d18c8009c8
commit
901447c1f6
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ abstract class GenericTestRunner: ITestRunnerContributor {
|
||||||
}
|
}
|
||||||
|
|
||||||
// JVM flags from the interceptors (these overwrite flags instead of just adding to the list)
|
// JVM flags from the interceptors (these overwrite flags instead of just adding to the list)
|
||||||
var result = ArrayList(jvmFlags + jvmFlagsFromContributors)
|
val result = ArrayList(jvmFlags + jvmFlagsFromContributors)
|
||||||
pluginInfo.testJvmFlagInterceptors.forEach {
|
pluginInfo.testJvmFlagInterceptors.forEach {
|
||||||
val newFlags = it.testJvmFlagsFor(project, context, result)
|
val newFlags = it.testJvmFlagsFor(project, context, result)
|
||||||
result.clear()
|
result.clear()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue