Skip to content

Commit 26b6365

Browse files
authored
Fixed formatting (#41434)
1 parent f1ebd5d commit 26b6365

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Http/Http.Extensions/src/RequestDelegateFactory.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,8 @@ private static Task ExecuteObjectReturn(object obj, HttpContext httpContext)
17441744
}
17451745
else if (obj is Task<string?> taskString)
17461746
{
1747-
return ExecuteTaskOfString(taskString, httpContext); }
1747+
return ExecuteTaskOfString(taskString, httpContext);
1748+
}
17481749
else if (obj is ValueTask<string?> valueTaskString)
17491750
{
17501751
return ExecuteValueTaskOfString(valueTaskString, httpContext);

0 commit comments

Comments
 (0)