Skip to content

Commit

Permalink
Remove empty output lines (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
PalmEmanuel committed Jul 9, 2024
2 parents b833ecc + 13340cd commit ef5503c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ The format is based on and uses the types of changes according to [Keep a Change

## [Unreleased]

### Fixed

- Fixed bug where empty lines were written to console.

## [3.2.0] - 2024-03-21

### Added
Expand Down
4 changes: 0 additions & 4 deletions source/AzBobbyTables.Core/AzDataTableService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -504,10 +504,6 @@ private void SubmitTransaction(IList<TableTransactionAction> transactions)
for (int i = 0; i < group.Count(); i += 100)
{
var response = TableClient!.SubmitTransaction(group.Skip(i).Take(100), CancellationToken);
foreach (var transactionResult in response.Value)
{
Console.WriteLine(transactionResult.Content.ToString());
}
}
}
}
Expand Down

0 comments on commit ef5503c

Please sign in to comment.