From bd7c39cda2845b3c0b78fdb0e64f90ee2219a820 Mon Sep 17 00:00:00 2001 From: Huascar Sanchez Date: Fri, 23 Jul 2021 13:41:49 -0700 Subject: [PATCH] Update SourceGeneratingTask.java --- .../com/sri/gradle/daikon/tasks/SourceGeneratingTask.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/sri/gradle/daikon/tasks/SourceGeneratingTask.java b/src/main/java/com/sri/gradle/daikon/tasks/SourceGeneratingTask.java index 8ac8713..ffd93f7 100644 --- a/src/main/java/com/sri/gradle/daikon/tasks/SourceGeneratingTask.java +++ b/src/main/java/com/sri/gradle/daikon/tasks/SourceGeneratingTask.java @@ -33,11 +33,11 @@ public void generateTestDriverCode() { final JavaProjectHelper projectHelper = new JavaProjectHelper(getProject()); // Automatically guessing whether there is a test driver in the project - // is challenging and error prone. Only the maintainer of a project knows - // whether that driver exist and whether that driver can has a main method - // Daikon can execute. If the maintainer wants this plugin to take care of + // is challenging and error prone. Only the maintainer of the project knows + // whether this driver exist and whether it has a main method the + // Daikon tool can execute. If the maintainer wants this plugin to take care of // the driver generation then they should indicate that via the property - // driver when building the project: -Pdriver. If that property is not + // -Pdriver when building the project. If that property is not // provided, then the generateTestDriverCode task will immediately return. if (!projectHelper.hasProperty(Constants.OWN_DRIVER)){ projectHelper.getProject().getLogger().quiet(Constants.DRIVER_EXIST);