You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2013/10/18 03:58:50 UTC

svn commit: r1533309 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/core/ lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/TermToBytesRefAttribute.java

Author: dsmiley
Date: Fri Oct 18 01:58:49 2013
New Revision: 1533309

URL: http://svn.apache.org/r1533309
Log:
docs wrongly refer to termAtt instead of tokenStream

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/core/   (props changed)
    lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/TermToBytesRefAttribute.java

Modified: lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/TermToBytesRefAttribute.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/TermToBytesRefAttribute.java?rev=1533309&r1=1533308&r2=1533309&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/TermToBytesRefAttribute.java (original)
+++ lucene/dev/branches/branch_4x/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/TermToBytesRefAttribute.java Fri Oct 18 01:58:49 2013
@@ -30,7 +30,7 @@ import org.apache.lucene.util.BytesRef;
  *   final TermToBytesRefAttribute termAtt = tokenStream.getAttribute(TermToBytesRefAttribute.class);
  *   final BytesRef bytes = termAtt.getBytesRef();
  *
- *   while (termAtt.incrementToken() {
+ *   while (tokenStream.incrementToken() {
  *
  *     // you must call termAtt.fillBytesRef() before doing something with the bytes.
  *     // this encodes the term value (internally it might be a char[], etc) into the bytes.