otis 02/01/28 03:39:02 Modified: src/java/org/apache/lucene/index IndexWriter.java Log: - Fixed references to variables in javadoc. Patch submitted by Daniel Rall. Revision Changes Path 1.4 +2 -2 jakarta-lucene/src/java/org/apache/lucene/index/IndexWriter.java Index: IndexWriter.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/index/IndexWriter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- IndexWriter.java 20 Oct 2001 02:32:59 -0000 1.3 +++ IndexWriter.java 28 Jan 2002 11:39:02 -0000 1.4 @@ -93,7 +93,7 @@ /** Constructs an IndexWriter for the index in <code>path</code>. Text will be analyzed with <code>a</code>. If <code>create</code> is true, then a - new, empty index will be created in <code>d</code>, replacing the index + new, empty index will be created in <code>path</code>, replacing the index already there, if any. */ public IndexWriter(String path, Analyzer a, boolean create) throws IOException { @@ -102,7 +102,7 @@ /** Constructs an IndexWriter for the index in <code>path</code>. Text will be analyzed with <code>a</code>. If <code>create</code> is true, then a - new, empty index will be created in <code>d</code>, replacing the index + new, empty index will be created in <code>path</code>, replacing the index already there, if any. */ public IndexWriter(File path, Analyzer a, boolean create) throws IOException {
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>