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:
Michael McCandless 2014-08-21 23:22:56 +00:00
parent 5e5072d3c2
commit 98404f9071
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}