mirror of https://github.com/apache/lucene.git
SOLR-1451 -- SolrPluginUtils#parseFieldBoosts has inconsistent javadoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@817804 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e8f899dc26
commit
9b97e37c14
|
@ -499,8 +499,8 @@ public class SolrPluginUtils {
|
|||
* Like <code>parseFieldBoosts(String)</code>, but parses all the strings
|
||||
* in the provided array (which may be null).
|
||||
*
|
||||
* @param fieldLists an array of Strings eg. <code>{"fieldOne^2.3", "fieldTwo"}</code>
|
||||
* @return Map of fieldOne => 2.3, fieldThree => -0.4
|
||||
* @param fieldLists an array of Strings eg. <code>{"fieldOne^2.3", "fieldTwo", fieldThree^-0.4}</code>
|
||||
* @return Map of fieldOne => 2.3, fieldTwo => null, fieldThree => -0.4
|
||||
*/
|
||||
public static Map<String,Float> parseFieldBoosts(String[] fieldLists) {
|
||||
if (null == fieldLists || 0 == fieldLists.length) {
|
||||
|
|
Loading…
Reference in New Issue