Skip to content

Commit

Permalink
[GH-70] - removing duplicated code
Browse files Browse the repository at this point in the history
  • Loading branch information
tpodolak committed Feb 26, 2019
1 parent 094d168 commit ccf2d99
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
using System.Collections.Immutable;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.VisualBasic.Syntax;
using NSubstitute.Analyzers.Shared;
using NSubstitute.Analyzers.Shared.CodeFixProviders;
using NSubstitute.Analyzers.VisualBasic.Refactorings;

Expand All @@ -12,8 +10,6 @@ namespace NSubstitute.Analyzers.VisualBasic.CodeFixProviders
[ExportCodeFixProvider(LanguageNames.VisualBasic)]
internal class InternalSetupSpecificationCodeFixProvider : AbstractInternalSetupSpecificationCodeFixProvider<CompilationUnitSyntax>
{
public override ImmutableArray<string> FixableDiagnosticIds { get; } = ImmutableArray.Create(DiagnosticIdentifiers.InternalSetupSpecification);

protected override string ReplaceModifierCodeFixTitle { get; } = "Replace friend with public modifier";

protected override Task<Document> AddModifierRefactoring(Document document, SyntaxNode node, Accessibility accessibility)
Expand Down

0 comments on commit ccf2d99

Please sign in to comment.