You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2009/05/15 14:23:19 UTC

svn commit: r775101 - /maven/components/branches/MNG-2766/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

Author: jvanzyl
Date: Fri May 15 12:23:18 2009
New Revision: 775101

URL: http://svn.apache.org/viewvc?rev=775101&view=rev
Log:
o remove dead method

Modified:
    maven/components/branches/MNG-2766/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

Modified: maven/components/branches/MNG-2766/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
URL: http://svn.apache.org/viewvc/maven/components/branches/MNG-2766/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java?rev=775101&r1=775100&r2=775101&view=diff
==============================================================================
--- maven/components/branches/MNG-2766/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java (original)
+++ maven/components/branches/MNG-2766/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java Fri May 15 12:23:18 2009
@@ -1486,19 +1486,6 @@
         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 ) );