Skip to content

Commit

Permalink
Spotless...
Browse files Browse the repository at this point in the history
  • Loading branch information
lbooker42 committed Jan 25, 2024
1 parent 0362edd commit 4f6c223
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private void doFilterParallel(
final BiConsumer<WritableRowSet, WritableRowSet> onFilterComplete = (adds, mods) -> {
// Clean up the row sets created by the filter.
try (final RowSet ignored = adds;
final RowSet ignored2 = mods) {
final RowSet ignored2 = mods) {
if (addedResult != null) {
synchronized (addedResult) {
addedResult.insert(adds);
Expand Down Expand Up @@ -270,7 +270,7 @@ public void scheduleCompletion(
final BiConsumer<WritableRowSet, WritableRowSet> onFilterComplete = (adds, mods) -> {
// Clean up the row sets created by the filter.
try (final RowSet ignored = localAddInput.getValue();
final RowSet ignored2 = localModInput.getValue()) {
final RowSet ignored2 = localModInput.getValue()) {
// Store the output as the next filter input.
localAddInput.setValue(adds);
localModInput.setValue(mods);
Expand Down

0 comments on commit 4f6c223

Please sign in to comment.