Skip to content

Commit

Permalink
GHA isn't using the latest version of C#
Browse files Browse the repository at this point in the history
  • Loading branch information
bobeaton committed Oct 5, 2024
1 parent 9dfe17b commit 5521347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EncCnvtrs/NetRegexEncConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected override EncodingForm DefaultUnicodeEncForm(bool bForward, bool bLHS)
internal static bool ParseConverterIdentifier(string strConverterSpec,
out List<string> findWhats, out List<string> replaceWiths, out List<RegexOptions> regexOptions, out List<bool> disabled)
{
var aregexs = strConverterSpec.Split([SeparatorRegularExpressions], StringSplitOptions.RemoveEmptyEntries);
var aregexs = strConverterSpec.Split(new [] { SeparatorRegularExpressions }, StringSplitOptions.RemoveEmptyEntries);
regexOptions = new List<RegexOptions>(aregexs.Length);
findWhats = new List<string>(aregexs.Length);
replaceWiths = new List<string>(aregexs.Length);
Expand Down

0 comments on commit 5521347

Please sign in to comment.