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

Unified Diff: pkg/analyzer_plugin/lib/utilities/change_builder/change_builder_core.dart

Issue 2962223002: Remove timeStamp from the ChangeBuilder API (Closed)
Patch Set: Created 3 years, 6 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: pkg/analyzer_plugin/lib/utilities/change_builder/change_builder_core.dart
diff --git a/pkg/analyzer_plugin/lib/utilities/change_builder/change_builder_core.dart b/pkg/analyzer_plugin/lib/utilities/change_builder/change_builder_core.dart
index 87d2caf47f1fbdc4cc6e7d0e2087f8bf38869d63..7d4ad63285fa860f8b28726e92876a1c728888f1 100644
--- a/pkg/analyzer_plugin/lib/utilities/change_builder/change_builder_core.dart
+++ b/pkg/analyzer_plugin/lib/utilities/change_builder/change_builder_core.dart
@@ -28,12 +28,10 @@ abstract class ChangeBuilder {
/**
* Use the [buildFileEdit] function to create a collection of edits to the
* file with the given [path]. The edits will be added to the source change
- * that is being built. The [timeStamp] is the time at which the file was last
- * modified and is used by clients to ensure that it is safe to apply the
- * edits.
+ * that is being built.
*/
Future<Null> addFileEdit(
- String path, int timeStamp, void buildFileEdit(FileEditBuilder builder));
+ String path, void buildFileEdit(FileEditBuilder builder));
/**
* Set the selection for the change being built to the given [position].

Powered by Google App Engine
This is Rietveld 408576698