o validation is now done elsewhere

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@726956 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2008-12-16 04:55:21 +00:00
parent 9a13ec793c
commit 38e6b15ebc
1 changed files with 0 additions and 11 deletions

View File

@ -337,15 +337,4 @@ public final class DefaultProjectBuilder
{
this.logger = logger;
}
private void validateModel( Model model )
throws IOException
{
ModelValidationResult validationResult = validator.validate( model );
if ( validationResult.getMessageCount() > 0 )
{
throw new IOException( "Failed to validate: " + validationResult.toString() );
}
}
}