Skip to content

Commit

Permalink
spotless:apply
Browse files Browse the repository at this point in the history
  • Loading branch information
pawankashyapollion committed Dec 23, 2024
1 parent b9816f3 commit 0362349
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public class CassandraSourceMetadata {
private static SourceSchema generateSourceSchema(ResultSet resultSet) {
Map<String, Map<String, SourceColumn>> schema = new HashMap<>();

// Process each row in the ResultSet
resultSet.forEach(
row -> {
String tableName = row.getString("table_name");
Expand All @@ -54,7 +53,6 @@ private static SourceSchema generateSourceSchema(ResultSet resultSet) {
schema.computeIfAbsent(tableName, k -> new HashMap<>()).put(columnName, sourceColumn);
});

// Convert collected data into SourceTable objects
Map<String, SourceTable> tables =
schema.entrySet().stream()
.collect(
Expand Down

0 comments on commit 0362349

Please sign in to comment.