We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1d0691 commit 3cde244Copy full SHA for 3cde244
System.IO.Abstractions.Analyzers/RoslynToken/RoslynClassFileSystem.cs
@@ -2,8 +2,6 @@
2
using Microsoft.CodeAnalysis;
3
using Microsoft.CodeAnalysis.CSharp;
4
using Microsoft.CodeAnalysis.CSharp.Syntax;
5
-using Microsoft.CodeAnalysis.Formatting;
6
-using Microsoft.CodeAnalysis.Simplification;
7
using SF = Microsoft.CodeAnalysis.CSharp.SyntaxFactory;
8
9
namespace System.IO.Abstractions.Analyzers.RoslynToken
@@ -84,7 +82,6 @@ public static ParameterSyntax CreateFileSystemParameterDeclaration()
84
82
{
85
83
return SF.Parameter(SF.Identifier(Constants.ParameterFileSystemName))
86
.WithType(GetFileSystemType())
87
- .WithAdditionalAnnotations(Formatter.Annotation, Simplifier.SpecialTypeAnnotation)
88
.NormalizeWhitespace();
89
}
90
0 commit comments