Skip to content

Commit

Permalink
fixing another extra line issue (#1391)
Browse files Browse the repository at this point in the history
closes #1390
  • Loading branch information
belav authored Nov 22, 2024
1 parent 84b775f commit e48c579
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,17 @@ CallMethod(_ =>
]
);

Dictionary<string, string[]> dictionary = new()
{
{
"Key",
[
"SomeValue__________________________________________",
"SomeValue__________________________________________",
]
},
};

class MyClass
{
private readonly List<string> _items;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ or AttributeArgumentSyntax
or ArrowExpressionClauseSyntax
or CastExpressionSyntax
or ExpressionElementSyntax
or InitializerExpressionSyntax
or SimpleLambdaExpressionSyntax
or AssignmentExpressionSyntax
{
Expand Down

0 comments on commit e48c579

Please sign in to comment.