[MNG-8361] Fix typo in color styles

This commit is contained in:
Guillaume Nodet 2024-11-02 10:29:52 +01:00
parent 4e1152f047
commit 8005826df7
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/**