Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Fukushima <[email protected]>
  • Loading branch information
gfukushima committed Jan 23, 2025
1 parent 4a4ba8a commit 883f7b2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ public <K, V> Stream<ColumnEntry<K, V>> stream(final KvStoreColumn<K, V> column)
return createStream(
column,
iter -> {
if (iter.isValid()) iter.seekToFirst();
if (iter.isValid()) {
iter.seekToFirst();
}
});
}

Expand Down

0 comments on commit 883f7b2

Please sign in to comment.