From cc680459218f7ed6f98b8080f47054b94dc0d442 Mon Sep 17 00:00:00 2001 From: David Barbet Date: Thu, 1 Oct 2020 18:17:03 -0700 Subject: [PATCH] Fix method consolidation --- .../CodeRefactorings/CodeRefactoringContextExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Features/Core/Portable/CodeRefactorings/CodeRefactoringContextExtensions.cs b/src/Features/Core/Portable/CodeRefactorings/CodeRefactoringContextExtensions.cs index 8645506ac54..aab79cb1b78 100644 --- a/src/Features/Core/Portable/CodeRefactorings/CodeRefactoringContextExtensions.cs +++ b/src/Features/Core/Portable/CodeRefactorings/CodeRefactoringContextExtensions.cs @@ -18,8 +18,8 @@ internal static class CodeRefactoringContextExtensions /// /// Use this helper to register multiple refactorings (). /// - private static void RegisterRefactorings( - CodeRefactoringContext context, ImmutableArray actions, TextSpan? applicableToSpan = null) + internal static void RegisterRefactorings( + this CodeRefactoringContext context, ImmutableArray actions, TextSpan? applicableToSpan = null) where TCodeAction : CodeAction { if (!actions.IsDefault) -- GitLab