Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: icsharpcode/RefactoringEssentials
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: MrDaedra/RefactoringEssentials
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 30, 2017

  1. Copy the full SHA
    6b9e3cd View commit details
  2. Revert "Solved ToAbstractNonVirtualConversionTests fail."

    This reverts commit 6b9e3cd.
    MrDaedra committed Jan 30, 2017
    Copy the full SHA
    06ff65c View commit details
  3. Copy the full SHA
    bcd72fc View commit details
Showing with 1 addition and 2 deletions.
  1. +1 −2 ...ls/CSharp/CodeRefactorings/Synced/ToAbstractVirtualNonVirtualConversionCodeRefactoringProvider.cs
Original file line number Diff line number Diff line change
@@ -42,8 +42,7 @@ public override async Task ComputeRefactoringsAsync(CodeRefactoringContext conte
if (declaration == null
|| declaration is BaseTypeDeclarationSyntax
|| declaration is ConstructorDeclarationSyntax
|| declaration is DestructorDeclarationSyntax
|| declaration.GetBodies().IsEmpty())
|| declaration is DestructorDeclarationSyntax)
return;
var modifiers = declaration.GetModifiers();
if (modifiers.Any(m => m.IsKind(SyntaxKind.OverrideKeyword)))