You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2019/07/23 05:46:19 UTC

[maven-dependency-plugin] branch master updated: [MDEP-653] - Remove newline and trailing space from log line.

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

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 19c77f8  [MDEP-653] - Remove newline and trailing space from log line.
19c77f8 is described below

commit 19c77f8886a912c9365e543dec4e8fec01a956ca
Author: Pim Moerenhout <pi...@gmail.com>
AuthorDate: Tue Jul 23 06:31:10 2019 +0200

    [MDEP-653] - Remove newline and trailing space from log line.
---
 .../org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java b/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java
index 771e60a..a773ced 100644
--- a/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java
+++ b/src/main/java/org/apache/maven/plugins/dependency/PurgeLocalRepositoryMojo.java
@@ -631,8 +631,8 @@ public class PurgeLocalRepositoryMojo
         getLog().info( messageBuilder.a( "Deleting " ).strong( artifacts.size() ).a( " projects' " )
             .strong( actTransitively ? "transitive" : "direct" )
             .a( " dependencies from " ).strong( localRepository.getBasedir() )
-            .a( " with artifact " ).strong( resolutionFuzziness ).a( " resolution fuzziness " )
-            .newline().toString() );
+            .a( " with artifact " ).strong( resolutionFuzziness ).a( " resolution fuzziness" )
+            .toString() );
 
         for ( Artifact artifact : artifacts )
         {