Remove outdated comments

This commit is contained in:
Nikolay Martynov 2018-07-24 15:58:24 -04:00
parent fcbba523d1
commit f0747a4096
1 changed files with 0 additions and 3 deletions

View File

@ -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