This repository was archived by the owner on Jul 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
src/Microsoft.DotNet.CodeFormatting/Rules Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11// Copyright (c) Microsoft. All rights reserved.
22// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33
4+ using Microsoft . CodeAnalysis ;
5+ using Microsoft . CodeAnalysis . CSharp ;
46using System ;
57using System . Collections . Generic ;
68using System . ComponentModel . Composition ;
7- using System . Linq ;
89using System . IO ;
9- using System . Threading ;
10- using System . Threading . Tasks ;
11-
12- using Microsoft . CodeAnalysis ;
13- using Microsoft . CodeAnalysis . CSharp ;
10+ using System . Linq ;
1411using System . Reflection ;
1512using System . Text ;
13+ using System . Threading ;
14+ using System . Threading . Tasks ;
1615
1716namespace Microsoft . DotNet . CodeFormatting . Rules
1817{
@@ -25,12 +24,6 @@ internal sealed class HasNoIllegalHeadersFormattingRule : IFormattingRule
2524 // We are going to remove any multiline comments that *only* contain these characters
2625 private const string CommentFormattingCharacters = "*/=-" ;
2726
28- [ ImportingConstructor ]
29- public HasNoIllegalHeadersFormattingRule ( )
30- {
31-
32- }
33-
3427 public async Task < Document > ProcessAsync ( Document document , CancellationToken cancellationToken )
3528 {
3629 var syntaxNode = await document . GetSyntaxRootAsync ( cancellationToken ) as CSharpSyntaxNode ;
You can’t perform that action at this time.
0 commit comments