From a44ce0c480fd5cebcce39a702c4ef72e2745341f Mon Sep 17 00:00:00 2001 From: Emanuel Palm Date: Tue, 9 Jul 2024 18:10:58 +0200 Subject: [PATCH 1/2] remove empty output lines --- source/AzBobbyTables.Core/AzDataTableService.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/AzBobbyTables.Core/AzDataTableService.cs b/source/AzBobbyTables.Core/AzDataTableService.cs index ffe0062..a46ec47 100644 --- a/source/AzBobbyTables.Core/AzDataTableService.cs +++ b/source/AzBobbyTables.Core/AzDataTableService.cs @@ -504,10 +504,6 @@ private void SubmitTransaction(IList 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()); - } } } } From 13340cdded255df75a9d1cbb9e7971cc7ba21a31 Mon Sep 17 00:00:00 2001 From: Emanuel Palm Date: Tue, 9 Jul 2024 18:14:07 +0200 Subject: [PATCH 2/2] updated changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 527fa43..6949a8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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