You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ha...@apache.org on 2013/12/16 16:03:49 UTC

svn commit: r1551223 - /lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/index/package.html

Author: han
Date: Mon Dec 16 15:03:49 2013
New Revision: 1551223

URL: http://svn.apache.org/r1551223
Log:
package summary fix

Modified:
    lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/index/package.html

Modified: lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/index/package.html
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/index/package.html?rev=1551223&r1=1551222&r2=1551223&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/index/package.html (original)
+++ lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/index/package.html Mon Dec 16 15:03:49 2013
@@ -94,7 +94,7 @@ and methods to access the term's <a href
 <a href="#positions">positions</a>.
 <pre class="prettyprint">
 // seek to a specific term
-boolean found = termsEnum.seekExact(new BytesRef("foobar"), true);
+boolean found = termsEnum.seekExact(new BytesRef("foobar"));
 if (found) {
   // get the document frequency
   System.out.println(termsEnum.docFreq());