Return-Path: Delivered-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Received: (qmail 2149 invoked from network); 22 Sep 2009 20:00:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 22 Sep 2009 20:00:20 -0000 Received: (qmail 48735 invoked by uid 500); 22 Sep 2009 20:00:20 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 48688 invoked by uid 500); 22 Sep 2009 20:00:20 -0000 Mailing-List: contact solr-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-dev@lucene.apache.org Delivered-To: mailing list solr-commits@lucene.apache.org Received: (qmail 48679 invoked by uid 99); 22 Sep 2009 20:00:20 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Sep 2009 20:00:20 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Sep 2009 20:00:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ABB6D23888D0; Tue, 22 Sep 2009 19:59:58 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r817804 - /lucene/solr/trunk/src/java/org/apache/solr/util/SolrPluginUtils.java Date: Tue, 22 Sep 2009 19:59:57 -0000 To: solr-commits@lucene.apache.org From: shalin@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090922195958.ABB6D23888D0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: shalin Date: Tue Sep 22 19:59:55 2009 New Revision: 817804 URL: http://svn.apache.org/viewvc?rev=817804&view=rev Log: SOLR-1451 -- SolrPluginUtils#parseFieldBoosts has inconsistent javadoc Modified: lucene/solr/trunk/src/java/org/apache/solr/util/SolrPluginUtils.java Modified: lucene/solr/trunk/src/java/org/apache/solr/util/SolrPluginUtils.java URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/java/org/apache/solr/util/SolrPluginUtils.java?rev=817804&r1=817803&r2=817804&view=diff ============================================================================== --- lucene/solr/trunk/src/java/org/apache/solr/util/SolrPluginUtils.java (original) +++ lucene/solr/trunk/src/java/org/apache/solr/util/SolrPluginUtils.java Tue Sep 22 19:59:55 2009 @@ -499,8 +499,8 @@ * Like parseFieldBoosts(String), but parses all the strings * in the provided array (which may be null). * - * @param fieldLists an array of Strings eg. {"fieldOne^2.3", "fieldTwo"} - * @return Map of fieldOne => 2.3, fieldThree => -0.4 + * @param fieldLists an array of Strings eg. {"fieldOne^2.3", "fieldTwo", fieldThree^-0.4} + * @return Map of fieldOne => 2.3, fieldTwo => null, fieldThree => -0.4 */ public static Map parseFieldBoosts(String[] fieldLists) { if (null == fieldLists || 0 == fieldLists.length) {