Remove unsupported argument from common-configuration

This commit is contained in:
Alexander Udalov
2022-05-30 19:57:56 +02:00
parent cb448b0f76
commit 1557ed9489
@@ -179,10 +179,7 @@ fun Project.configureKotlinCompilationOptions() {
allWarningsAsErrors = !kotlinBuildProperties.disableWerror
}
if (project.path in projectsWithEnabledContextReceivers) {
freeCompilerArgs += listOf(
"-Xcontext-receivers",
"-Xdont-poison-binaries-with-prerelease"
)
freeCompilerArgs += "-Xcontext-receivers"
}
}
}