fix SolrDocumentList.toString() maxScore

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1094163 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2011-04-17 16:02:37 +00:00
parent b2530b74aa
commit 77e4b65134
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class SolrDocumentList extends ArrayList<SolrDocument>
public String toString() {
return "{numFound="+numFound
+",start="+start
+ (maxScore!=null ? ""+maxScore : "")
+ (maxScore!=null ? ",maxScore="+maxScore : "")
+",docs="+super.toString()
+"}";
}