mirror of https://github.com/apache/lucene.git
SOLR-5720: Java 6 compatibility change
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1573636 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
080e735f40
commit
d8e387dc0f
|
@ -174,7 +174,7 @@ public class ExpandComponent extends SearchComponent implements PluginInfoInitia
|
|||
searcher.search(query, pfilter.filter, collector);
|
||||
IntObjectOpenHashMap groups = groupExpandCollector.getGroups();
|
||||
Iterator<IntObjectCursor> it = groups.iterator();
|
||||
Map<String, DocSlice> outMap = new HashMap<>();
|
||||
Map<String, DocSlice> outMap = new HashMap();
|
||||
BytesRef bytesRef = new BytesRef();
|
||||
CharsRef charsRef = new CharsRef();
|
||||
FieldType fieldType = searcher.getSchema().getField(field).getType();
|
||||
|
|
Loading…
Reference in New Issue