Skip to content

Commit

Permalink
Applied spotless:apply
Browse files Browse the repository at this point in the history
  • Loading branch information
pawankashyapollion committed Dec 23, 2024
1 parent a54bc10 commit b9816f3
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,7 @@ private static Map<String, NameAndCols> convertSourceToNameAndColsTable(
private static NameAndCols convertSourceTableToNameAndCols(SourceTable sourceTable) {
Map<String, String> columnNames =
sourceTable.columns().stream()
.collect(
Collectors.toMap(
SourceColumn::name,
SourceColumn
::name // Could be expanded to map to more useful data, like column types
));
.collect(Collectors.toMap(SourceColumn::name, SourceColumn::name));

return new NameAndCols(sourceTable.name(), columnNames);
}
Expand Down

0 comments on commit b9816f3

Please sign in to comment.