Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit 5c2f5ce

Browse files
committed
fixed reformatter adding extra space after = {
1 parent c34b1df commit 5c2f5ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utils/SPSyntaxTidy/SPSyntaxTidy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static string TidyUp(string source)
5050
{
5151
LookForSingleIndentationSegment = false;
5252
var lastToken = GetTokenSave(i - 1, token, length);
53-
if (lastToken.Kind != SPTokenKind.Newline && lastToken.Kind != SPTokenKind.Comma)
53+
if (lastToken.Kind != SPTokenKind.Newline && lastToken.Kind != SPTokenKind.Comma && lastToken.Kind != SPTokenKind.Operator)
5454
{
5555
outString.Append(" ");
5656
}

0 commit comments

Comments
 (0)