SOLR-6856: fix preceding whitespace for attribute values dumped into the catch-all field.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1654444 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2015-01-24 01:07:07 +00:00
parent d17e8133e0
commit b1a127b6c5
2 changed files with 2 additions and 2 deletions

View File

@ -538,7 +538,7 @@ Bug Fixes
(shalin)
* SOLR-6856: Restore ExtractingRequestHandler's ability to capture all HTML tags when
parsing (X)HTML. (hossman, ehatcher, Steve Rowe)
parsing (X)HTML. (hossman, Uwe Schindler, ehatcher, Steve Rowe)
* SOLR-7024: Improved error messages when java is not found by the bin/solr
shell script, particularly when JAVA_HOME has an invalid location.

View File

@ -280,7 +280,7 @@ public class SolrContentHandler extends DefaultHandler implements ExtractingPara
}
} else {
for (int i = 0; i < attributes.getLength(); i++) {
bldrStack.getLast().append(attributes.getValue(i)).append(' ');
bldrStack.getLast().append(' ').append(attributes.getValue(i));
}
}
bldrStack.getLast().append(' ');