1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2012-03-03 18:26:46 -08:00
parent 78ec6b8ebe
commit ba686ec199
2 changed files with 3 additions and 3 deletions

View file

@ -39,8 +39,7 @@ public class ExtractConstantRefactoringDescriptor extends CRefactoringDescriptor
} }
@Override @Override
public CRefactoring createRefactoring(RefactoringStatus status) public CRefactoring createRefactoring(RefactoringStatus status) throws CoreException {
throws CoreException {
ISelection selection = getSelection(); ISelection selection = getSelection();
ICProject project = getCProject(); ICProject project = getCProject();
ExtractConstantRefactoring refactoring = ExtractConstantRefactoring refactoring =

View file

@ -31,7 +31,8 @@ public class HideMethodRefactoringDescriptor extends CRefactoringDescriptor {
public HideMethodRefactoringDescriptor(String project, String description, String comment, public HideMethodRefactoringDescriptor(String project, String description, String comment,
Map<String, String> arguments) { Map<String, String> arguments) {
super(HideMethodRefactoring.ID, project, description, comment, RefactoringDescriptor.STRUCTURAL_CHANGE, arguments); super(HideMethodRefactoring.ID, project, description, comment,
RefactoringDescriptor.STRUCTURAL_CHANGE, arguments);
} }
@Override @Override