Skip to content

Commit d701b81

Browse files
committed
Removed unnecessary string trim in the GetText methods for the Cell and TextChunk classes.
1 parent ee484e7 commit d701b81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tabula/Cell.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public override string GetText(bool useLineReturns)
8181
sb.Append(tc.GetText());
8282
curTop = tc.Bottom;
8383
}
84-
return sb.ToString().Trim();
84+
return sb.ToString();
8585
}
8686

8787
/// <summary>

Tabula/TextChunk.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public override string GetText()
244244
sb.Append(te.GetText());
245245
}
246246

247-
return sb.ToString().Normalize(NormalizationForm.FormKC).Trim();
247+
return sb.ToString().Normalize(NormalizationForm.FormKC);
248248
}
249249

250250
/// <summary>

0 commit comments

Comments
 (0)