Fix wrong cast in MemoryIndexTest

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@836083 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2009-11-14 01:07:34 +00:00
parent 8411a96a87
commit c35c0ec4fe
1 changed files with 3 additions and 2 deletions

View File

@ -41,6 +41,7 @@ import org.apache.lucene.analysis.StopFilter;
import org.apache.lucene.analysis.standard.StandardAnalyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.document.Field;
import org.apache.lucene.document.Fieldable;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.IndexReader;
import org.apache.lucene.queryParser.ParseException;
@ -391,9 +392,9 @@ public class MemoryIndexTest extends BaseTokenStreamTestCase {
private MemoryIndex createMemoryIndex(Document doc) {
MemoryIndex index = new MemoryIndex();
Iterator iter = doc.getFields().iterator();
Iterator<Fieldable> iter = doc.getFields().iterator();
while (iter.hasNext()) {
Field field = (Field) iter.next();
Fieldable field = iter.next();
index.addField(field.name(), field.stringValue(), analyzer);
}
return index;