mirror of https://github.com/apache/lucene.git
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:
parent
d17e8133e0
commit
b1a127b6c5
|
@ -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.
|
||||
|
|
|
@ -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(' ');
|
||||
|
|
Loading…
Reference in New Issue