mirror of https://github.com/apache/lucene.git
javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@816044 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d0ea0d18e6
commit
7bfec227b6
|
@ -185,6 +185,10 @@ public class XPathRecordReader {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Set<Node> childrenFound = new HashSet<Node>();
|
Set<Node> childrenFound = new HashSet<Node>();
|
||||||
|
// for any normal event , parser.next() should be called in each iteration.
|
||||||
|
// But for CDATA | CHARACTERS | SPACE it should not do so because handling of
|
||||||
|
// CDATA itself would have consumed the next event. CDATA may throw multiple events
|
||||||
|
// so all the events are slurped till a START_ELEMENT is encountered.
|
||||||
boolean skipNextEvent = false;
|
boolean skipNextEvent = false;
|
||||||
int event = -1;
|
int event = -1;
|
||||||
while (true) {
|
while (true) {
|
||||||
|
|
Loading…
Reference in New Issue