Skip to content

Commit 51e0998

Browse files
committed
tidy
1 parent bf534ee commit 51e0998

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lucene/core/src/java/org/apache/lucene/util/fst/NodeHash.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,8 @@ private boolean nodesEqual(FSTCompiler.UnCompiledNode<T> node, long address) thr
238238
}
239239
break;
240240
case FST.ARCS_FOR_CONTINUOUS:
241-
if ((node.arcs[node.numArcs - 1].label - node.arcs[0].label + 1) != scratchArc.numArcs()) {
241+
if ((node.arcs[node.numArcs - 1].label - node.arcs[0].label + 1)
242+
!= scratchArc.numArcs()) {
242243
return false;
243244
}
244245
break;

0 commit comments

Comments
 (0)