Skip to content

Commit

Permalink
Remove unnecessary empty check
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaudy committed Mar 18, 2024
1 parent 14568c8 commit 9bc8786
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ private void testIndex(final boolean immutableColumns, final Random random, fina

// Create indexes for every column combination; they will be retained by our parent class's LivenessScope
for (final List<String> set : powerSet(queryTable.getColumnSourceMap().keySet())) {
if (set.isEmpty()) {
continue;
}
System.out.println("Creating index for " + set);
DataIndexer.getOrCreateDataIndex(queryTable, set.toArray(String[]::new));
}
Expand Down

0 comments on commit 9bc8786

Please sign in to comment.