o improve message when required parameter is null

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163175 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2004-09-30 16:11:11 +00:00
parent 4072630050
commit a699b769da
1 changed files with 2 additions and 2 deletions

View File

@ -145,8 +145,8 @@ private String createPluginParameterRequiredMessage( MojoDescriptor mojo, Parame
{
StringBuffer message = new StringBuffer();
message.append( "The " + parameter.getName() ).
append( " is required for the execution of the " ).
message.append( "The '" + parameter.getName() ).
append( "' parameter is required for the execution of the " ).
append( mojo.getId() ).
append( " mojo and cannot be null." );