Skip to content

Commit 282e5c4

Browse files
kevinwillems1993pavel-alay
authored andcommitted
Changed variable declaration and assignment to one line.
Autoported commit. Original commit hash: [4698b47c9]
1 parent ec82fb5 commit 282e5c4

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

itext.tests/itext.kernel.tests/itext/kernel/utils/PdfMergerTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,9 @@ public virtual void MergeTableWithEmptyTdTest() {
235235
merger.Close();
236236
output.Close();
237237
CompareTool compareTool = new CompareTool();
238-
String errorMessage = "";
239238
String tagStructErrorMessage = compareTool.CompareTagStructures(resultFile, sourceFolder + "cmp_tableWithEmptyTd.pdf"
240239
);
241-
errorMessage += tagStructErrorMessage == null ? "" : tagStructErrorMessage + "\n";
240+
String errorMessage = tagStructErrorMessage == null ? "" : tagStructErrorMessage + "\n";
242241
if (!String.IsNullOrEmpty(errorMessage)) {
243242
NUnit.Framework.Assert.Fail(errorMessage);
244243
}

port-hash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
db0fb68a039469dbe8f13366ce362b74e639d6c6
1+
4698b47c9115e0afcd4307fe63804dfade8c9661

0 commit comments

Comments
 (0)