Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Halter <halter73@gmail.com>2022-08-03 23:31:03 +0300
committerStephen Halter <halter73@gmail.com>2022-08-03 23:31:03 +0300
commit8916cc16030ee2f0bae6c4c24f644c2d74194f66 (patch)
tree0432ff425bfed209a622de983f3f9a0640fa74ef
parentdf764e84e0737e1a292dd0900728e89a5ed3c71a (diff)
internal -> privatehalter73/42703
-rw-r--r--src/Shared/RoslynUtils/TypeHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Shared/RoslynUtils/TypeHelper.cs b/src/Shared/RoslynUtils/TypeHelper.cs
index ad84c696cf..51ca29d9c9 100644
--- a/src/Shared/RoslynUtils/TypeHelper.cs
+++ b/src/Shared/RoslynUtils/TypeHelper.cs
@@ -42,7 +42,7 @@ internal static class TypeHelper
/// Parses generated local function name out of a generated method name. This code is a stop-gap and exists to address the issues with extracting
/// original method names from generated local functions. See https://github.com/dotnet/roslyn/issues/55651 for more info.
/// </summary>
- internal static bool TryParseLocalFunctionName(string generatedName, [NotNullWhen(true)] out string? originalName)
+ private static bool TryParseLocalFunctionName(string generatedName, [NotNullWhen(true)] out string? originalName)
{
originalName = null;