From 1392741dce972151c7dfbda22660be94bc5c4576 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Sat, 3 Mar 2012 19:17:13 -0800 Subject: [PATCH] Missing piece of the previous commit. --- .../ui/refactoring/CRefactoringDescriptor.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/CRefactoringDescriptor.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/CRefactoringDescriptor.java index 379f9989289..8f295a8a2e4 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/CRefactoringDescriptor.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/refactoring/CRefactoringDescriptor.java @@ -57,12 +57,12 @@ public abstract class CRefactoringDescriptor extends RefactoringDescriptor { @Override public abstract CRefactoring createRefactoring(RefactoringStatus status) throws CoreException; - public CRefactoringContext createRefactoringContext(RefactoringStatus status) throws CoreException { - CRefactoring refactoring= createRefactoring(status); - if (refactoring == null) - return null; - return new CRefactoringContext(refactoring); - } +// public CRefactoringContext createRefactoringContext(RefactoringStatus status) throws CoreException { +// CRefactoring refactoring= createRefactoring(status); +// if (refactoring == null) +// return null; +// return new CRefactoringContext(refactoring); +// } protected ISelection getSelection() throws CoreException { ISelection selection;