From f0747a40962b379ce1e5e5c25a4e68b6ccbed84c Mon Sep 17 00:00:00 2001 From: Nikolay Martynov Date: Tue, 24 Jul 2018 15:58:24 -0400 Subject: [PATCH] Remove outdated comments --- gradle/java.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/gradle/java.gradle b/gradle/java.gradle index 776647b75c..ccc7e1c0bd 100644 --- a/gradle/java.gradle +++ b/gradle/java.gradle @@ -152,7 +152,6 @@ tasks.withType(Test) { if (java7Home != null) { def testJ7 = task "${cloned.name}Java7"(type: cloned.class) { description "Runs $cloned.name under java 7" - // TODO: Pull from environment variable: executable = "$java7Home/bin/java" afterEvaluate { exclude project.testJava8Only @@ -166,7 +165,6 @@ tasks.withType(Test) { if (java9Home != null) { def testJ9 = task "${cloned.name}Java9"(type: cloned.class) { description "Runs $cloned.name under java 9" - // TODO: Pull from environment variable: executable = "$java9Home/bin/java" project.afterEvaluate { exclude project.testJava8Only @@ -179,7 +177,6 @@ tasks.withType(Test) { if (java10Home != null) { def testJ10 = task "${cloned.name}Java10"(type: cloned.class) { description "Runs $cloned.name under java 10" - // TODO: Pull from environment variable: executable = "$java10Home/bin/java" project.afterEvaluate { exclude project.testJava8Only