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:
Joel Bernstein 2014-03-03 17:42:47 +00:00
parent 080e735f40
commit d8e387dc0f
1 changed files with 1 additions and 1 deletions

View File

@ -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();