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:
Uwe Schindler 2013-03-18 13:07:24 +00:00
parent 6231597974
commit 9a54942863
4 changed files with 0 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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