This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven.git
The following commit(s) were added to refs/heads/master by this push: new 8005826df7 [MNG-8361] Fix typo in color styles 8005826df7 is described below commit 8005826df75c09ed530c31d636206309f5fab13b Author: Guillaume Nodet <gno...@gmail.com> AuthorDate: Sat Nov 2 10:29:52 2024 +0100 [MNG-8361] Fix typo in color styles --- .../src/main/java/org/apache/maven/api/services/MessageBuilder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java b/api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java index e38c861092..ae0d249c33 100644 --- a/api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java +++ b/api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java @@ -98,7 +98,7 @@ public interface MessageBuilder extends Appendable { */ @Nonnull default MessageBuilder success(Object message) { - return style("." + Constants.MAVEN_STYLE_DEBUG_NAME + ":-" + Constants.MAVEN_STYLE_DEBUG_DEFAULT, message); + return style("." + Constants.MAVEN_STYLE_SUCCESS_NAME + ":-" + Constants.MAVEN_STYLE_SUCCESS_DEFAULT, message); } /**