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:
Shalin Shekhar Mangar 2009-09-22 19:59:55 +00:00
parent e8f899dc26
commit 9b97e37c14
1 changed files with 2 additions and 2 deletions

View File

@ -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 =&gt; 2.3, fieldThree =&gt; -0.4
* @param fieldLists an array of Strings eg. <code>{"fieldOne^2.3", "fieldTwo", fieldThree^-0.4}</code>
* @return Map of fieldOne =&gt; 2.3, fieldTwo =&gt; null, fieldThree =&gt; -0.4
*/
public static Map<String,Float> parseFieldBoosts(String[] fieldLists) {
if (null == fieldLists || 0 == fieldLists.length) {