LUCENE-2621: javadocs warnings

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1199839 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-11-09 16:44:17 +00:00
parent 64840db75f
commit dc716ad4eb
1 changed files with 3 additions and 3 deletions

View File

@ -58,12 +58,12 @@ import java.io.PrintStream;
* This task also supports a "writer.info.stream" property with the following
* values:
* <ul>
* <li>SystemOut - sets {@link IndexWriter#setInfoStream(java.io.PrintStream)}
* <li>SystemOut - sets {@link IndexWriterConfig#setInfoStream(java.io.PrintStream)}
* to {@link System#out}.
* <li>SystemErr - sets {@link IndexWriter#setInfoStream(java.io.PrintStream)}
* <li>SystemErr - sets {@link IndexWriterConfig#setInfoStream(java.io.PrintStream)}
* to {@link System#err}.
* <li>&lt;file_name&gt; - attempts to create a file given that name and sets
* {@link IndexWriter#setInfoStream(java.io.PrintStream)} to that file. If this
* {@link IndexWriterConfig#setInfoStream(java.io.PrintStream)} to that file. If this
* denotes an invalid file name, or some error occurs, an exception will be
* thrown.
* </ul>