You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/01/13 15:29:15 UTC

[maven-jlink-plugin] 03/03: Remove useless 'return' statement from integration test.

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch MJLINK-6
in repository https://gitbox.apache.org/repos/asf/maven-jlink-plugin.git

commit 93e670417871d590736ce57cd97625198836aae7
Author: Andre Tadeu de Carvalho <an...@gmail.com>
AuthorDate: Fri Jan 11 17:15:09 2019 -0200

    Remove useless 'return' statement from integration test.
---
 src/it/projects/MJLINK-6_allowSetJmodPath/verify.groovy | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/it/projects/MJLINK-6_allowSetJmodPath/verify.groovy b/src/it/projects/MJLINK-6_allowSetJmodPath/verify.groovy
index dd8f904..a594432 100644
--- a/src/it/projects/MJLINK-6_allowSetJmodPath/verify.groovy
+++ b/src/it/projects/MJLINK-6_allowSetJmodPath/verify.groovy
@@ -27,6 +27,4 @@ File target = new File( basedir, "target" );
 assert target.isDirectory()
 
 File artifact = new File( target, "maven-jlink-plugin-mjlink-6-96.0.zip" );
-assert artifact.isFile()
-
-return true
+assert artifact.isFile()
\ No newline at end of file