You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ba...@apache.org on 2008/09/09 02:14:40 UTC

svn commit: r693322 - /maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java

Author: baerrach
Date: Mon Sep  8 17:14:40 2008
New Revision: 693322

URL: http://svn.apache.org/viewvc?rev=693322&view=rev
Log:
Removed unused argument "mavenRepo" from getLines() private method.

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java?rev=693322&r1=693321&r2=693322&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/java/org/apache/maven/plugin/eclipse/it/AbstractEclipsePluginIT.java Mon Sep  8 17:14:40 2008
@@ -468,14 +468,14 @@
     protected void assertFileEquals( String mavenRepo, File expectedFile, File actualFile )
         throws IOException
     {
-        List expectedLines = getLines( mavenRepo, expectedFile );
+        List expectedLines = getLines( expectedFile );
 
         if ( !actualFile.exists() )
         {
             throw new AssertionFailedError( "Expected file not found: " + actualFile.getAbsolutePath() );
         }
 
-        List actualLines = getLines( mavenRepo, actualFile );
+        List actualLines = getLines( actualFile );
         String filename = actualFile.getName();
 
         String basedir = new File( getBasedir() ).getCanonicalPath().replace( '\\', '/' );
@@ -570,7 +570,7 @@
         }
     }
 
-    private List getLines( String mavenRepo, File file )
+    private List getLines( File file )
         throws IOException
     {
         List lines = new ArrayList();