Skip to content

Commit 9397ec8

Browse files
committed
tidy code
1 parent 8d95bf5 commit 9397ec8

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
@@ -121,7 +121,8 @@ public long add(FSTCompiler.UnCompiledNode<T> nodeIn) throws IOException {
121121
if (node != 0) {
122122
// it was already in fallback -- promote to primary
123123
// TODO: Copy directly between 2 ByteBlockPool to avoid double-copy
124-
primaryTable.set(pos, node, fallbackTable.getBytes(lastFallbackPos, lastFallbackNodeLength));
124+
primaryTable.set(
125+
pos, node, fallbackTable.getBytes(lastFallbackPos, lastFallbackNodeLength));
125126
} else {
126127
// not in fallback either -- freeze & add the incoming node
127128

0 commit comments

Comments
 (0)