You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2011/04/17 18:02:37 UTC

svn commit: r1094163 - /lucene/dev/trunk/solr/src/common/org/apache/solr/common/SolrDocumentList.java

Author: yonik
Date: Sun Apr 17 16:02:37 2011
New Revision: 1094163

URL: http://svn.apache.org/viewvc?rev=1094163&view=rev
Log:
fix SolrDocumentList.toString() maxScore

Modified:
    lucene/dev/trunk/solr/src/common/org/apache/solr/common/SolrDocumentList.java

Modified: lucene/dev/trunk/solr/src/common/org/apache/solr/common/SolrDocumentList.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/src/common/org/apache/solr/common/SolrDocumentList.java?rev=1094163&r1=1094162&r2=1094163&view=diff
==============================================================================
--- lucene/dev/trunk/solr/src/common/org/apache/solr/common/SolrDocumentList.java (original)
+++ lucene/dev/trunk/solr/src/common/org/apache/solr/common/SolrDocumentList.java Sun Apr 17 16:02:37 2011
@@ -61,7 +61,7 @@ public class SolrDocumentList extends Ar
   public String toString() {
     return "{numFound="+numFound
             +",start="+start
-            + (maxScore!=null ? ""+maxScore : "")
+            + (maxScore!=null ? ",maxScore="+maxScore : "")
             +",docs="+super.toString()
             +"}";
   }