fix returning unbalanced quotes in describeParams()

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@586918 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2007-10-21 17:26:16 +00:00
parent a4dcb122be
commit 2f5507bfc9
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ public final class MoreLikeThis {
sb.append("\t" + "maxQueryTerms : " + maxQueryTerms + "\n");
sb.append("\t" + "minWordLen : " + minWordLen + "\n");
sb.append("\t" + "maxWordLen : " + maxWordLen + "\n");
sb.append("\t" + "fieldNames : \"");
sb.append("\t" + "fieldNames : ");
String delim = "";
for (int i = 0; i < fieldNames.length; i++) {
String fieldName = fieldNames[i];