This commit is contained in:
David Wengier 2024-06-21 08:21:55 +10:00
Родитель eb07c84987
Коммит e34270682d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -30,7 +30,7 @@ internal sealed class DefaultInterceptorManager : InterceptorManager
_lazyInterceptors = lazyInterceptors.ToList().AsReadOnly();
#pragma warning restore CS0612 // Type or member is obsolete
_ = lazyGenericInterceptors ?? throw new ArgumentNullException(nameof(lazyInterceptors));
_ = lazyGenericInterceptors ?? throw new ArgumentNullException(nameof(lazyGenericInterceptors));
_lazyGenericInterceptors = lazyGenericInterceptors.ToList().AsReadOnly();
}