o remove dead method

git-svn-id: https://svn.apache.org/repos/asf/maven/components/branches/MNG-2766@775101 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2009-05-15 12:23:18 +00:00
parent c456055883
commit 49a8b628b3
1 changed files with 0 additions and 13 deletions

View File

@ -1486,19 +1486,6 @@ public class PomConstructionTest
return new PomTestWrapper( pomFile, mavenProjectBuilder.build( pomFile, config ) );
}
private Model buildMixin( String mixinPath )
throws IOException, XmlPullParserException
{
File mixinFile = new File( testMixinDirectory , mixinPath );
if ( mixinFile.isDirectory() )
{
mixinFile = new File( mixinFile, "mixin.xml" );
}
FileInputStream pluginStream = new FileInputStream( mixinFile );
MavenXpp3Reader reader = new MavenXpp3Reader();
return reader.read(pluginStream, false);
}
protected void assertModelEquals( PomTestWrapper pom, Object expected, String expression )
{
assertEquals( expected, pom.getValue( expression ) );