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

Commit f62abce

Browse files
author
Wim Pool
committed
added missing return
1 parent b0200ad commit f62abce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Text/Common/DeserializeSpecializedCollections.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static ParseStringDelegate GetParseFn()
5454
#endif
5555
if (typeof (T) == typeof (IEnumerable) || typeof(T) == typeof(ICollection))
5656
{
57-
GetEnumerableParseFn();
57+
return GetEnumerableParseFn();
5858
}
5959

6060
return GetGenericEnumerableParseFn();

0 commit comments

Comments
 (0)