mirror of https://github.com/apache/lucene.git
LUCENE-5895: fix version in javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1619624 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5e5072d3c2
commit
98404f9071
|
@ -171,7 +171,7 @@ public final class SegmentInfos implements Cloneable, Iterable<SegmentCommitInfo
|
|||
*/
|
||||
private static PrintStream infoStream = null;
|
||||
|
||||
/** Id for this commit; only written starting with Lucene 4.10 */
|
||||
/** Id for this commit; only written starting with Lucene 4.11 */
|
||||
private String id;
|
||||
|
||||
/** Sole constructor. Typically you call this and then
|
||||
|
@ -324,8 +324,8 @@ public final class SegmentInfos implements Cloneable, Iterable<SegmentCommitInfo
|
|||
nextGeneration);
|
||||
}
|
||||
|
||||
/** Since Lucene 4.10, every commit (segments_N) writes a unique id. This will
|
||||
* return that id, or null if this commit was pre-4.10. */
|
||||
/** Since Lucene 4.11, every commit (segments_N) writes a unique id. This will
|
||||
* return that id, or null if this commit was pre-4.11. */
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue