Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

Commit 466bb66

Browse files
committed
Remove unused braces
1 parent 2aed314 commit 466bb66

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/LanguageServer/Impl/Implementation/LineFormatter.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,6 @@ public TextEdit[] FormatLine(int line) {
237237

238238
case TokenKind.Power:
239239
case TokenKind.Multiply:
240-
{
241240
var actualPrev = token.PrevNonIgnored;
242241
if (token.Inside != null && actualPrev != null && (actualPrev.Kind == TokenKind.Comma || actualPrev.IsOpen || token.Inside.Kind == TokenKind.KeywordLambda)) {
243242
builder.Append(token);
@@ -248,7 +247,6 @@ public TextEdit[] FormatLine(int line) {
248247
AppendTokenEnsureWhiteSpacesAround(builder, token);
249248
}
250249
break;
251-
}
252250

253251
// Operators
254252
case TokenKind.MatMultiply:

0 commit comments

Comments
 (0)