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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/formatter/BasicEditStore.java

Issue 11316129: Formatter checkpoint. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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.engine/src/com/google/dart/engine/internal/formatter/BasicEditStore.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/formatter/BasicEditStore.java (revision 15190)
+++ editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/internal/formatter/BasicEditStore.java (working copy)
@@ -18,6 +18,7 @@
import com.google.dart.engine.formatter.edit.EditStore;
import java.util.ArrayList;
+import java.util.List;
/**
* Basic un-optimized edit store suitable for subclassing.
@@ -38,7 +39,7 @@
}
@Override
- public Iterable<Edit> getEdits() {
+ public List<Edit> getEdits() {
return edits;
}

Powered by Google App Engine
This is Rietveld 408576698