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

Unified Diff: pkg/front_end/lib/physical_file_system.dart

Issue 2988443002: Remove FileSystem.lastModified (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « pkg/front_end/lib/memory_file_system.dart ('k') | pkg/front_end/lib/src/incremental/file_state.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/physical_file_system.dart
diff --git a/pkg/front_end/lib/physical_file_system.dart b/pkg/front_end/lib/physical_file_system.dart
index 59402a322e01b50b2bcae0e565046a482b09c163..2fe685619524c6ebea049d110332ebef42263932 100644
--- a/pkg/front_end/lib/physical_file_system.dart
+++ b/pkg/front_end/lib/physical_file_system.dart
@@ -51,15 +51,6 @@ class _PhysicalFileSystemEntity implements FileSystemEntity {
}
}
- @override
- Future<DateTime> lastModified() async {
- try {
- return await new io.File.fromUri(uri).lastModified();
- } on io.FileSystemException catch (exception) {
- throw _toFileSystemException(exception);
- }
- }
-
@override
Future<List<int>> readAsBytes() async {
try {
« no previous file with comments | « pkg/front_end/lib/memory_file_system.dart ('k') | pkg/front_end/lib/src/incremental/file_state.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698