From f01672f71449090acc6b9135ca6b91409cb4becb Mon Sep 17 00:00:00 2001 From: GHXX Date: Sun, 11 Aug 2024 22:23:43 +0200 Subject: [PATCH] autoformat --- SimpleHttpServer/Types/EndpointInvocationInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimpleHttpServer/Types/EndpointInvocationInfo.cs b/SimpleHttpServer/Types/EndpointInvocationInfo.cs index adc6185..d5b0543 100644 --- a/SimpleHttpServer/Types/EndpointInvocationInfo.cs +++ b/SimpleHttpServer/Types/EndpointInvocationInfo.cs @@ -22,7 +22,7 @@ internal record EndpointInvocationInfo { /// internal readonly object? typeInstanceReference; - public EndpointInvocationInfo(MethodInfo methodInfo, List pathParameters, List queryParameters, InternalEndpointCheckAttribute[] requiredChecks, + public EndpointInvocationInfo(MethodInfo methodInfo, List pathParameters, List queryParameters, InternalEndpointCheckAttribute[] requiredChecks, object? typeInstanceReference) { this.methodInfo = methodInfo ?? throw new ArgumentNullException(nameof(methodInfo));