Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Jan 6, 2025
1 parent 8b7d10d commit 1073e29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected void generateTopicConsumer(Module module, Topic data, String packageNa
var partitions = 1;
for (var metadata : data.getMetadataList()) {
if (metadata.hasPartitions()) {
partitions = (int)metadata.getPartitions().getPartitions();
partitions = (int) metadata.getPartitions().getPartitions();
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected void generateTopicConsumer(Module module, Topic data, String packageNa
var partitions = 1;
for (var metadata : data.getMetadataList()) {
if (metadata.hasPartitions()) {
partitions = (int)metadata.getPartitions().getPartitions();
partitions = (int) metadata.getPartitions().getPartitions();
break;
}
}
Expand Down

0 comments on commit 1073e29

Please sign in to comment.