You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2007/08/18 06:33:28 UTC

svn commit: r567227 - /maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/parser/AbstractParserTest.java

Author: vsiveton
Date: Fri Aug 17 21:33:25 2007
New Revision: 567227

URL: http://svn.apache.org/viewvc?view=rev&rev=567227
Log:
o removed unused import
o fixed javadoc

Modified:
    maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/parser/AbstractParserTest.java

Modified: maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/parser/AbstractParserTest.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/parser/AbstractParserTest.java?view=diff&rev=567227&r1=567226&r2=567227
==============================================================================
--- maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/parser/AbstractParserTest.java (original)
+++ maven/doxia/doxia/trunk/doxia-core/src/test/java/org/apache/maven/doxia/parser/AbstractParserTest.java Fri Aug 17 21:33:25 2007
@@ -26,22 +26,25 @@
 import org.apache.maven.doxia.sink.TextSink;
 import org.apache.maven.doxia.parser.ParseException;
 
-import java.io.FileReader;
 import java.io.IOException;
 import java.io.Reader;
 import java.io.Writer;
 
 /**
  * Test the parsing of sample input files.
+ * <br/>
  * <b>Note</b>: you have to provide a sample "test." + outputExtension()
  * file in the test resources directory if you extend this class.
+ *
+ * @version $Id$
+ * @since 1.0
  */
 public abstract class AbstractParserTest
     extends AbstractModuleTest
 {
     /**
      * Create a new instance of the parser to test.
-     * 
+     *
      * @return the parser to test.
      */
     protected abstract Parser createParser();