mirror of https://github.com/apache/lucene.git
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:
parent
b2530b74aa
commit
77e4b65134
|
@ -61,7 +61,7 @@ public class SolrDocumentList extends ArrayList<SolrDocument>
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "{numFound="+numFound
|
return "{numFound="+numFound
|
||||||
+",start="+start
|
+",start="+start
|
||||||
+ (maxScore!=null ? ""+maxScore : "")
|
+ (maxScore!=null ? ",maxScore="+maxScore : "")
|
||||||
+",docs="+super.toString()
|
+",docs="+super.toString()
|
||||||
+"}";
|
+"}";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue