From 293c767135e58270c3e6bca3897030b40f29bd4f Mon Sep 17 00:00:00 2001 From: Dmitry Vyazelenko <696855+vyazelenko@users.noreply.github.com> Date: Fri, 16 Jul 2021 14:46:30 +0200 Subject: [PATCH] [Gradle] Remove workaround for https://github.com/gradle/gradle/issues/15538 as the issue was fixed in Gradle 7.x. --- build.gradle | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build.gradle b/build.gradle index 28739e8f4..df3c808a3 100644 --- a/build.gradle +++ b/build.gradle @@ -195,10 +195,6 @@ subprojects { } if (buildJavaVersion >= 9) { - // -- Workaround for https://github.com/gradle/gradle/issues/15538 - options.forkOptions.jvmArgs.addAll( ['--add-opens', 'jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED'] ) - // -- - javaCompiler.set(toolchainCompiler) } else {