From 18f75faac96e03a1160f1a87c1bbad2624750a8d Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Thu, 20 Oct 2011 18:22:12 +0000 Subject: [PATCH] fix javadocs git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1186978 13f79535-47bb-0310-9956-ffa450edef68 --- lucene/src/java/org/apache/lucene/index/TermsEnum.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lucene/src/java/org/apache/lucene/index/TermsEnum.java b/lucene/src/java/org/apache/lucene/index/TermsEnum.java index e1bd0e31239..d96ec0dc937 100644 --- a/lucene/src/java/org/apache/lucene/index/TermsEnum.java +++ b/lucene/src/java/org/apache/lucene/index/TermsEnum.java @@ -147,7 +147,7 @@ public abstract class TermsEnum { * call this when the enum is unpositioned. This method * will not return null. * - * @param liveDocs set bits are documents that should not + * @param liveDocs unset bits are documents that should not * be returned * @param reuse pass a prior DocsEnum for possible reuse */ public abstract DocsEnum docs(Bits liveDocs, DocsEnum reuse) throws IOException; @@ -155,7 +155,10 @@ public abstract class TermsEnum { /** Get {@link DocsAndPositionsEnum} for the current term. * Do not call this when the enum is unpositioned. * This method will only return null if positions were - * not indexed into the postings by this codec. */ + * not indexed into the postings by this codec. + * @param liveDocs unset bits are documents that should not + * be returned + * @param reuse pass a prior DocsAndPositionsEnum for possible reuse */ public abstract DocsAndPositionsEnum docsAndPositions(Bits liveDocs, DocsAndPositionsEnum reuse) throws IOException; /**