Author: vsiveton Date: Tue Jan 20 05:06:57 2009 New Revision: 736010 URL: http://svn.apache.org/viewvc?rev=736010&view=rev Log: o fixed javadoc
Modified: maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/SinkFactory.java Modified: maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/SinkFactory.java URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/SinkFactory.java?rev=736010&r1=736009&r2=736010&view=diff ============================================================================== --- maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/SinkFactory.java (original) +++ maven/doxia/doxia/trunk/doxia-sink-api/src/main/java/org/apache/maven/doxia/sink/SinkFactory.java Tue Jan 20 05:06:57 2009 @@ -40,9 +40,7 @@ * * @param outputDir the not-null output dir. * @param outputName the not-null output name. - * * @return a <code>Sink</code> instance with a file as output. - * * @throws java.io.IOException if any */ Sink createSink( File outputDir, String outputName ) @@ -54,13 +52,9 @@ * @param outputDir the not-null output dir. * @param outputName the not-null output name. * @param encoding the output encoding. - * * @return a <code>Sink</code> instance with a file as output and using specified encoding. - * * @throws java.io.IOException if any - * * @see #createSink(File, String) - * * @since 1.1 */ Sink createSink( File outputDir, String outputName, String encoding ) @@ -70,11 +64,8 @@ * Create a <code>Sink</code> into an OutputStream. * * @param out not null OutputStream to write the result. - * * @return a <code>Sink</code> instance. - * * @throws java.io.IOException if any - * * @since 1.1 */ Sink createSink( OutputStream out ) @@ -85,11 +76,8 @@ * * @param out not null OutputStream to write the result. * @param encoding the output encoding. - * * @return a <code>Sink</code> instance using specified encoding. - * * @throws java.io.IOException if any - * * @since 1.1 */ Sink createSink( OutputStream out, String encoding )