Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 474025951
Change-Id: I0259fc99a092311c1e5ab8cee31c6ab7becd06e2
  • Loading branch information
cushon authored and Copybara-Service committed Sep 13, 2022
1 parent 3dd17e6 commit 2a39af6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/jdk/default_java_toolchain.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ DEFAULT_TOOLCHAIN_CONFIGURATION = dict(
] + JDK9_JVM_OPTS,
turbine_jvm_opts = [
# Turbine is not a worker and parallel GC is faster for short-lived programs.
"-XX:+UseParallelOldGC",
"-XX:+UseParallelGC",
],
java_runtime = "@bazel_tools//tools/jdk:remote_jdk11",
)
Expand Down Expand Up @@ -117,7 +117,7 @@ PREBUILT_TOOLCHAIN_CONFIGURATION = dict(
] + JDK9_JVM_OPTS,
turbine_jvm_opts = [
# Turbine is not a worker and parallel GC is faster for short-lived programs.
"-XX:+UseParallelOldGC",
"-XX:+UseParallelGC",
],
ijar = ["@bazel_tools//tools/jdk:ijar_prebuilt_binary"],
singlejar = ["@bazel_tools//tools/jdk:prebuilt_singlejar"],
Expand All @@ -132,7 +132,7 @@ NONPREBUILT_TOOLCHAIN_CONFIGURATION = dict(
] + JDK9_JVM_OPTS,
turbine_jvm_opts = [
# Turbine is not a worker and parallel GC is faster for short-lived programs.
"-XX:+UseParallelOldGC",
"-XX:+UseParallelGC",
],
ijar = ["@remote_java_tools//:ijar_cc_binary"],
singlejar = ["@remote_java_tools//:singlejar_cc_bin"],
Expand Down

0 comments on commit 2a39af6

Please sign in to comment.