SOLR-1302: append instead of concat

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@881093 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2009-11-17 02:06:43 +00:00
parent 3e1933134d
commit aed363f621
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ public class HaversineFunction extends ValueSource {
public String description() {
StringBuilder sb = new StringBuilder();
sb.append(name() + '(');
sb.append(name()).append('(');
sb.append(x1).append(',').append(y1).append(',').append(x2).append(',').append(y2);
sb.append(')');
return sb.toString();