Skip to content

Commit 1fdde05

Browse files
Add missing accessibility keyword
1 parent 1a60a76 commit 1fdde05

File tree

1 file changed

+1
-1
lines changed
  • src/Shared/Microsoft.AspNetCore.Razor.Utilities.Shared

1 file changed

+1
-1
lines changed

src/Shared/Microsoft.AspNetCore.Razor.Utilities.Shared/ArgHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static unsafe void ThrowIfNull([NotNull] void* argument, [CallerArgumentE
3939
#if !NET8_0_OR_GREATER
4040
[DoesNotReturn]
4141
[MethodImpl(MethodImplOptions.NoInlining)]
42-
static void ThrowArgumentNullException(string? paramName)
42+
private static void ThrowArgumentNullException(string? paramName)
4343
{
4444
throw new ArgumentNullException(paramName);
4545
}

0 commit comments

Comments
 (0)