mirror of https://github.com/apache/lucene.git
Fix typo in CheckJoinIndex (#12231)
This commit is contained in:
parent
2d7908e3c9
commit
4e88118a35
|
@ -63,7 +63,7 @@ public class CheckJoinIndex {
|
|||
for (int child = prevParentDoc + 1; child != parentDoc; child++) {
|
||||
final boolean childIsLive = liveDocs.get(child);
|
||||
if (parentIsLive != childIsLive) {
|
||||
if (childIsLive) {
|
||||
if (parentIsLive) {
|
||||
throw new IllegalStateException(
|
||||
"Parent doc "
|
||||
+ parentDoc
|
||||
|
|
Loading…
Reference in New Issue