This repository was archived by the owner on Jul 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Microsoft.DotNet.CodeFormatting Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ namespace Microsoft.DotNet.CodeFormatting
1313{
1414 [ MetadataAttribute ]
1515 [ AttributeUsage ( AttributeTargets . Class , AllowMultiple = false ) ]
16- public sealed class SyntaxRuleOrderAttribute : ExportAttribute
16+ internal sealed class SyntaxRuleOrderAttribute : ExportAttribute
1717 {
1818 public SyntaxRuleOrderAttribute ( int order )
1919 : base ( typeof ( ISyntaxFormattingRule ) )
@@ -27,7 +27,7 @@ public SyntaxRuleOrderAttribute(int order)
2727
2828 [ MetadataAttribute ]
2929 [ AttributeUsage ( AttributeTargets . Class , AllowMultiple = false ) ]
30- public sealed class LocalSemanticRuleOrderAttribute : ExportAttribute
30+ internal sealed class LocalSemanticRuleOrderAttribute : ExportAttribute
3131 {
3232 public LocalSemanticRuleOrderAttribute ( int order )
3333 : base ( typeof ( ILocalSemanticFormattingRule ) )
@@ -41,7 +41,7 @@ public LocalSemanticRuleOrderAttribute(int order)
4141
4242 [ MetadataAttribute ]
4343 [ AttributeUsage ( AttributeTargets . Class , AllowMultiple = false ) ]
44- public sealed class GlobalSemanticRuleOrderAttribute : ExportAttribute
44+ internal sealed class GlobalSemanticRuleOrderAttribute : ExportAttribute
4545 {
4646 public GlobalSemanticRuleOrderAttribute ( int order )
4747 : base ( typeof ( IGlobalSemanticFormattingRule ) )
Original file line number Diff line number Diff line change 1212namespace Microsoft . DotNet . CodeFormatting . Rules
1313{
1414 [ LocalSemanticRuleOrder ( LocalSemanticRuleOrder . RemoveExplicitThisRule ) ]
15- public sealed class ExplicitThisRule : ILocalSemanticFormattingRule
15+ internal sealed class ExplicitThisRule : ILocalSemanticFormattingRule
1616 {
1717 private sealed class ExplicitThisRewriter : CSharpSyntaxRewriter
1818 {
You can’t perform that action at this time.
0 commit comments