Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
cpwright committed Sep 24, 2024
1 parent b18db52 commit 115da85
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1650,13 +1650,14 @@ public void testBigDecimalCoercion() {

@Test
public void testAddAndRemoveRefilter() {
final QueryTable source = testRefreshingTable(i(10, 20, 30).toTracking(), stringCol("FV", "A", "B", "C"), intCol("Sentinel", 10, 20, 30));
final QueryTable source = testRefreshingTable(i(10, 20, 30).toTracking(), stringCol("FV", "A", "B", "C"),
intCol("Sentinel", 10, 20, 30));
final ControlledUpdateGraph updateGraph = ExecutionContext.getContext().getUpdateGraph().cast();

final QueryTable setTable = testRefreshingTable(i(10, 30).toTracking(), stringCol("FV", "A", "C"));

final Table result = source.whereIn(setTable, "FV");
final SimpleListener listener = new SimpleListener(result);
final SimpleListener listener = new SimpleListener(result);
result.addUpdateListener(listener);

final PrintListener plResult = new PrintListener("testAddAndRemoveRefilter-result", result);
Expand Down

0 comments on commit 115da85

Please sign in to comment.