Skip to content

Commit edca3c5

Browse files
committed
🧹 whitespace
1 parent b65825c commit edca3c5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

‎jwl.infra/HttpClientExt.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ public static async Task<TResponse> DeserializeJsonStreamAsync<TResponse>(Stream
2727
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
2828
IncludeFields = true
2929
};
30+
3031
TResponse result = await JsonSerializer.DeserializeAsync<TResponse>(stream, jsonSerializerOptions)
3132
?? throw new NullReferenceException("JSON deserialization NULL result");
33+
3234
return result;
3335
}
3436

@@ -39,6 +41,7 @@ public static async Task<TResponse> DeserializeXmlStreamAsync<TResponse>(Stream
3941
{
4042
object result = xmlSerializer.Deserialize(responseContentStream)
4143
?? throw new NullReferenceException("XML deserialization NULL result");
44+
4245
return result;
4346
});
4447

0 commit comments

Comments
 (0)