Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 29fcad3

Browse files
committed
remove try/catch handlers
1 parent a661821 commit 29fcad3

File tree

2 files changed

+111
-149
lines changed

2 files changed

+111
-149
lines changed

src/ServiceStack.Text/Support/StringSegment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public bool EndsWith(string text, StringComparison comparisonType)
258258
{
259259
if (text == null)
260260
{
261-
throw new ArgumentNullException(nameof(text));
261+
throw new ArgumentNullException(nameof(text));
262262
}
263263

264264
var textLength = text.Length;

0 commit comments

Comments
 (0)