From 453c85d5070f358b3ef720e44b1fcbd8233c1d0f Mon Sep 17 00:00:00 2001 From: Mirko Felice Date: Tue, 20 Jun 2023 17:32:58 +0200 Subject: [PATCH] chore: improve comment --- build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b06096d9..84a864f5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -51,11 +51,11 @@ dependencies { } /* - Following lines from 59-66 are needed as a workaround because of an official Gradle issue, - linked to https://github.com/gradle/gradle/issues/16603. - The issue is related to Gradle Daemon that is closed automatically by the Testkit official library, - but jacoco agent does not wait for it. -*/ + * The following lines are a workaround for + * https://github.com/gradle/gradle/issues/16603. + * The issue is related to the Gradle Daemon getting terminated by the Gradle Testkit, + * and the JaCoCo agent not waiting for it. + */ inline fun Project.disableTrackState() { tasks.withType().configureEach { doNotTrackState("Otherwise JaCoCo does not work correctly")