mirror of https://github.com/apache/lucene.git
- Fixed references to variables in javadoc. Patch submitted by Daniel Rall.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149659 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7f8618e5de
commit
0d109d7705
|
@ -93,7 +93,7 @@ public final class IndexWriter {
|
|||
|
||||
/** 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 @@ public final class IndexWriter {
|
|||
|
||||
/** 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 {
|
||||
|
|
Loading…
Reference in New Issue