From 34106f9d5b1fbd8b0119a6588713142c9c38167a Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Wed, 28 Dec 2022 10:27:11 -0700 Subject: [PATCH] Revert "Enable new jarfs for multiplex workers. (#888)" This reverts commit 4a559b029e66b7b308e382ada5e17471db626545. --- kotlin/internal/jvm/compile.bzl | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/kotlin/internal/jvm/compile.bzl b/kotlin/internal/jvm/compile.bzl index 5a2a79e25..42f4b60c6 100644 --- a/kotlin/internal/jvm/compile.bzl +++ b/kotlin/internal/jvm/compile.bzl @@ -345,15 +345,8 @@ def _run_kt_builder_action( for f, path in outputs.items(): args.add("--" + f, path) - experimental_multiplex_flags = [ - "-Xuse-fast-jar-file-system", - ] if toolchains.kt.execution_requirements["supports-multiplex-workers"] else [] - # Unwrap kotlinc_options/javac_options options or default to the ones being provided by the toolchain - args.add_all( - "--kotlin_passthrough_flags", - kotlinc_options_to_flags(kotlinc_options) + experimental_multiplex_flags, - ) + args.add_all("--kotlin_passthrough_flags", kotlinc_options_to_flags(kotlinc_options)) args.add_all("--javacopts", javac_options_to_flags(javac_options)) args.add_all("--direct_dependencies", _java_infos_to_compile_jars(compile_deps.deps)) args.add("--strict_kotlin_deps", toolchains.kt.experimental_strict_kotlin_deps)