mirror of https://github.com/apache/lucene.git
LUCENE-4747: Fix nocommits
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1457747 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6231597974
commit
9a54942863
|
@ -631,7 +631,6 @@ public class XPathRecordReader {
|
|||
EmptyEntityResolver.configureXMLInputFactory(factory);
|
||||
factory.setXMLReporter(XMLLOG);
|
||||
try {
|
||||
// nocommit: still true for java7?
|
||||
// The java 1.6 bundled stax parser (sjsxp) does not currently have a thread-safe
|
||||
// XMLInputFactory, as that implementation tries to cache and reuse the
|
||||
// XMLStreamReader. Setting the parser-specific "reuse-instance" property to false
|
||||
|
|
|
@ -91,7 +91,6 @@ public class DocumentAnalysisRequestHandler extends AnalysisRequestHandlerBase {
|
|||
|
||||
inputFactory = XMLInputFactory.newInstance();
|
||||
try {
|
||||
// nocommit: still true in 1.7?
|
||||
// The java 1.6 bundled stax parser (sjsxp) does not currently have a thread-safe
|
||||
// XMLInputFactory, as that implementation tries to cache and reuse the
|
||||
// XMLStreamReader. Setting the parser-specific "reuse-instance" property to false
|
||||
|
|
|
@ -86,7 +86,6 @@ public class XMLLoader extends ContentStreamLoader {
|
|||
EmptyEntityResolver.configureXMLInputFactory(inputFactory);
|
||||
inputFactory.setXMLReporter(xmllog);
|
||||
try {
|
||||
// nocommit: still true in 1.7?
|
||||
// The java 1.6 bundled stax parser (sjsxp) does not currently have a thread-safe
|
||||
// XMLInputFactory, as that implementation tries to cache and reuse the
|
||||
// XMLStreamReader. Setting the parser-specific "reuse-instance" property to false
|
||||
|
|
|
@ -55,7 +55,6 @@ public class XMLResponseParser extends ResponseParser
|
|||
static {
|
||||
factory = XMLInputFactory.newInstance();
|
||||
try {
|
||||
// nocommit: still true for 1.7?
|
||||
// The java 1.6 bundled stax parser (sjsxp) does not currently have a thread-safe
|
||||
// XMLInputFactory, as that implementation tries to cache and reuse the
|
||||
// XMLStreamReader. Setting the parser-specific "reuse-instance" property to false
|
||||
|
|
Loading…
Reference in New Issue