Skip to content

Commit

Permalink
Function rename.
Browse files Browse the repository at this point in the history
  • Loading branch information
lbooker42 committed Jan 24, 2024
1 parent 94ed63b commit 763753c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public void process() {
// we should not get here if the recorder is null and we did not request a refilter
Assert.neqNull(recorder, "recorder");

final ListenerFilterExecution result = makeRefilterExecution();
final ListenerFilterExecution result = makeUpdateFilterExecution();
final TableUpdate upstream = recorder.getUpdate().acquire();
result.scheduleCompletion(
(adds, mods) -> completeUpdate(upstream, result.sourceModColumns, result.runModifiedFilters, adds,
Expand Down Expand Up @@ -238,7 +238,7 @@ ListenerFilterExecution makeRefilterExecution(final RowSet refilter) {
return new ListenerFilterExecution(refilter, null, false, ModifiedColumnSet.ALL);
}

ListenerFilterExecution makeRefilterExecution() {
ListenerFilterExecution makeUpdateFilterExecution() {
final ModifiedColumnSet sourceModColumns = getSourceModifiedColumnSet();
final boolean runModifiedFilters = filterColumns == null || sourceModColumns.containsAny(filterColumns);
return new ListenerFilterExecution(recorder.getAdded(), recorder.getModified(),
Expand Down

0 comments on commit 763753c

Please sign in to comment.