Skip to content

Commit

Permalink
refactor mark static local function
Browse files Browse the repository at this point in the history
  • Loading branch information
thohng committed Jun 3, 2024
1 parent f71c2f5 commit c9c3df6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hosting/MountFileHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static MountFileProviderOptions ParserOptions(IConfigurationRoot configur
}
}

bool TryParseKeyValue(string keyValue, out string key, out string? value)
static bool TryParseKeyValue(string keyValue, out string key, out string? value)
{
var pos = keyValue.IndexOf('=');
if (pos > 0 && pos < keyValue.Length - 1)
Expand Down

0 comments on commit c9c3df6

Please sign in to comment.