This is an automated email from the ASF dual-hosted git repository. khmarbaise pushed a commit to branch MNG-6492 in repository https://gitbox.apache.org/repos/asf/maven.git
commit 01aba7fa4fbdf6d7f02987dd4f0cd049c0a0921e Author: Sylwester Lachiewicz <slachiew...@gmail.com> AuthorDate: Sun Jun 10 17:41:24 2018 +0200 Fixed typo in exception logging LegacyRepositorySystem Fixes #170 --- .../org/apache/maven/repository/legacy/LegacyRepositorySystem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java b/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java index 0acab4f..e3e7781 100644 --- a/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java +++ b/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java @@ -186,7 +186,7 @@ public class LegacyRepositorySystem // MNG-5368: Log a message instead of returning 'null' silently. this.logger.error( String.format( "Invalid version specification '%s' creating extension artifact '%s:%s:%s'.", - version, groupId, artifactId, version, e ) ); + version, groupId, artifactId, version ), e ); return null; } @@ -217,7 +217,7 @@ public class LegacyRepositorySystem // MNG-5368: Log a message instead of returning 'null' silently. this.logger.error( String.format( "Invalid version specification '%s' creating plugin artifact '%s'.", - version, plugin, e ) ); + version, plugin ), e ); return null; }