Skip to content

Commit c981ae8

Browse files
committed
Remove extra parenthesis
1 parent 2e8db69 commit c981ae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/ProjectGeneration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ public string ProjectFile(Assembly assembly)
600600
#if UNITY_EDITOR_WIN
601601
private static readonly Regex InvalidCharactersRegexPattern = new Regex(@"\?|&|\*|""|<|>|\||#|%|\^|;", RegexOptions.Compiled);
602602
#else
603-
private static readonly Regex InvalidCharactersRegexPattern = new Regex(@"\?|&|\*|""|<|>|\||#|%|\^|;|:"), RegexOptions.Compiled);
603+
private static readonly Regex InvalidCharactersRegexPattern = new Regex(@"\?|&|\*|""|<|>|\||#|%|\^|;|:", RegexOptions.Compiled);
604604
#endif
605605

606606
public string SolutionFile()

0 commit comments

Comments
 (0)