mirror of https://github.com/apache/lucene.git
LUCENE-1825: Another one :(
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@806990 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c2f95d474b
commit
4745c8db05
|
@ -76,9 +76,9 @@ public class TestThaiAnalyzer extends TestCase {
|
|||
throws Exception {
|
||||
|
||||
TokenStream ts = a.tokenStream("dummy", new StringReader(input));
|
||||
TermAttribute termAtt = (TermAttribute) ts.getAttribute(TermAttribute.class);
|
||||
OffsetAttribute offsetAtt = (OffsetAttribute) ts.getAttribute(OffsetAttribute.class);
|
||||
TypeAttribute typeAtt = (TypeAttribute) ts.getAttribute(TypeAttribute.class);
|
||||
TermAttribute termAtt = (TermAttribute) ts.addAttribute(TermAttribute.class);
|
||||
OffsetAttribute offsetAtt = (OffsetAttribute) ts.addAttribute(OffsetAttribute.class);
|
||||
TypeAttribute typeAtt = (TypeAttribute) ts.addAttribute(TypeAttribute.class);
|
||||
for (int i = 0; i < output.length; i++) {
|
||||
assertTrue(ts.incrementToken());
|
||||
assertEquals(termAtt.term(), output[i]);
|
||||
|
@ -98,11 +98,11 @@ public class TestThaiAnalyzer extends TestCase {
|
|||
|
||||
TokenStream ts = a.reusableTokenStream("dummy", new StringReader(input));
|
||||
TermAttribute termAtt = (TermAttribute) ts
|
||||
.getAttribute(TermAttribute.class);
|
||||
.addAttribute(TermAttribute.class);
|
||||
OffsetAttribute offsetAtt = (OffsetAttribute) ts
|
||||
.getAttribute(OffsetAttribute.class);
|
||||
.addAttribute(OffsetAttribute.class);
|
||||
TypeAttribute typeAtt = (TypeAttribute) ts
|
||||
.getAttribute(TypeAttribute.class);
|
||||
.addAttribute(TypeAttribute.class);
|
||||
for (int i = 0; i < output.length; i++) {
|
||||
assertTrue(ts.incrementToken());
|
||||
assertEquals(termAtt.term(), output[i]);
|
||||
|
|
Loading…
Reference in New Issue