Generics got lost during merge. Seen by the only unchecked warning (core now compiles without any unchecked warning!)

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@829231 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2009-10-23 20:52:26 +00:00
parent 35fb2e4950
commit 1686dac7f9
1 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ public class MultiFieldQueryParser extends QueryParser
* <p>In other words, all the query's terms must appear, but it doesn't matter in
* what fields they appear.</p>
*/
public MultiFieldQueryParser(Version matchVersion, String[] fields, Analyzer analyzer, Map boosts) {
public MultiFieldQueryParser(Version matchVersion, String[] fields, Analyzer analyzer, Map<String,Float> boosts) {
this(matchVersion, fields, analyzer);
this.boosts = boosts;
}