Skip to content

Commit 68573f2

Browse files
CR Feedback: Add/remove some blank lines
1 parent f468d74 commit 68573f2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/DefaultTagHelperDescriptorFactory.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

44
using System;
@@ -70,6 +70,7 @@ private bool ShouldSkipDescriptorCreation(ISymbol symbol)
7070
return editorBrowsableAttribute?.ConstructorArguments is [{ Value: object value }, ..] &&
7171
(EditorBrowsableState)value == EditorBrowsableState.Never;
7272
}
73+
7374
private static void AddTagMatchingRules(INamedTypeSymbol type, TagHelperDescriptorBuilder descriptorBuilder)
7475
{
7576
using var targetElementAttributes = new PooledArrayBuilder<AttributeData>();

src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/CSharp/RequiredAttributeParser.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

44
using System;
@@ -52,7 +52,6 @@ public static void AddRequiredAttributes(string input, TagMatchingRuleDescriptor
5252
builder.Diagnostics.AddRange(result.Diagnostics);
5353
}
5454
});
55-
5655
}
5756
}
5857
while (result.Success);

0 commit comments

Comments
 (0)