Update dependencies (#10)

Fix code style
This commit is contained in:
2021-09-16 13:56:05 +02:00
committed by GitHub
parent d20e5bd308
commit 57925151fa
28 changed files with 378 additions and 256 deletions
@@ -46,7 +46,10 @@ namespace System.Extensions
public TResult Finally(Action act)
{
if (act is null) throw new ArgumentNullException(nameof(act));
if (act is null)
{
throw new ArgumentNullException(nameof(act));
}
try
{