You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2016/10/21 20:37:14 UTC

maven git commit: [MNG-6081] Log refactoring - Method Invocation Replaced By Variable

Repository: maven
Updated Branches:
  refs/heads/master 5bd5a6df8 -> e07978bdc


[MNG-6081] Log refactoring - Method Invocation Replaced By Variable


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/e07978bd
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/e07978bd
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/e07978bd

Branch: refs/heads/master
Commit: e07978bdca0fe80ba059c686ac92229065b0fd44
Parents: 5bd5a6d
Author: Nemo Chen <ch...@gmail.com>
Authored: Fri Oct 21 22:36:41 2016 +0200
Committer: Michael Osipov <mi...@apache.org>
Committed: Fri Oct 21 22:36:41 2016 +0200

----------------------------------------------------------------------
 .../apache/maven/artifact/resolver/DebugResolutionListener.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/e07978bd/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
----------------------------------------------------------------------
diff --git a/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java b/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
index 43806b1..bd1ed9a 100644
--- a/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
+++ b/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
@@ -71,7 +71,7 @@ public class DebugResolutionListener
 
         if ( omittedVersion != null ? !omittedVersion.equals( keptVersion ) : keptVersion != null )
         {
-            logger.debug( indent + omitted + " (removed - nearer found: " + kept.getVersion() + ")" );
+            logger.debug( indent + omitted + " (removed - nearer found: " + keptVersion + ")" );
         }
     }
 
@@ -164,4 +164,4 @@ public class DebugResolutionListener
         }
     }
 
-}
\ No newline at end of file
+}