LUCENE-1619: remove unnecessary initTermBuffer()

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@769300 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2009-04-28 08:46:25 +00:00
parent 984ac64054
commit 3b71cc921a
1 changed files with 0 additions and 1 deletions

View File

@ -171,7 +171,6 @@ public class TermAttribute extends Attribute implements Cloneable, Serializable
/** Return number of valid characters (length of the term) /** Return number of valid characters (length of the term)
* in the termBuffer array. */ * in the termBuffer array. */
public int termLength() { public int termLength() {
initTermBuffer();
return termLength; return termLength;
} }