-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,8 @@ | |
import org.eclipse.jdt.core.refactoring.descriptors.JavaRefactoringDescriptor; | ||
|
||
/** | ||
* A {@link RefactoringDescriptor} specific to Java refactorings for our | ||
* research prototypes. | ||
* | ||
* A {@link RefactoringDescriptor} specific to Java refactorings for our research prototypes. | ||
* | ||
* @author <a href="mailto:[email protected]">Raffi Khatchadourian</a> | ||
*/ | ||
public class RefactoringDescriptor extends JavaRefactoringDescriptor { | ||
|
@@ -22,8 +21,7 @@ public RefactoringDescriptor(String id, String description, String comment, Map< | |
super(id, null, description, comment, arguments, FLAGS); | ||
} | ||
|
||
public RefactoringDescriptor(String id, String project, String description, String comment, | ||
Map<String, String> arguments) { | ||
public RefactoringDescriptor(String id, String project, String description, String comment, Map<String, String> arguments) { | ||
super(id, project, description, comment, arguments, FLAGS); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters