Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1574)

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/refactoring/UndoCompilationUnitChange.java

Issue 9834028: Initial implementation of "Rename Local Variable" refactoring. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: LInked/inline mode for rename Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/refactoring/UndoCompilationUnitChange.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/refactoring/UndoCompilationUnitChange.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/refactoring/UndoCompilationUnitChange.java
index 5a6abc98511491c3b62af099d1b6b8b95a1a252c..796ca2ace306206de716f8190a8afccf1e5195ec 100755
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/refactoring/UndoCompilationUnitChange.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/refactoring/UndoCompilationUnitChange.java
@@ -49,17 +49,11 @@ import org.eclipse.text.edits.UndoEdit;
fCUnit = unit;
}
- /**
- * {@inheritDoc}
- */
@Override
public Object getModifiedElement() {
return fCUnit;
}
- /**
- * {@inheritDoc}
- */
@Override
public Change perform(IProgressMonitor pm) throws CoreException {
pm.beginTask("", 2); //$NON-NLS-1$
@@ -71,9 +65,6 @@ import org.eclipse.text.edits.UndoEdit;
}
}
- /**
- * {@inheritDoc}
- */
@Override
protected Change createUndoChange(UndoEdit edit, ContentStamp stampToRestore)
throws CoreException {

Powered by Google App Engine
This is Rietveld 408576698