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

Unified Diff: pkg/watcher/lib/src/constructable_file_system_event.dart

Issue 69013003: Fix some analyzer warnings and hints in pkg/watcher. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « no previous file | pkg/watcher/lib/src/directory_watcher/linux.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/watcher/lib/src/constructable_file_system_event.dart
diff --git a/pkg/watcher/lib/src/constructable_file_system_event.dart b/pkg/watcher/lib/src/constructable_file_system_event.dart
index e65e2582785c9dcc43a32c550ccda3919a43fcfb..010d2979d0f160caf017843eeba94628defef3f9 100644
--- a/pkg/watcher/lib/src/constructable_file_system_event.dart
+++ b/pkg/watcher/lib/src/constructable_file_system_event.dart
@@ -9,7 +9,7 @@ import 'dart:io';
abstract class _ConstructableFileSystemEvent implements FileSystemEvent {
final bool isDirectory;
final String path;
- final int type;
+ int get type;
_ConstructableFileSystemEvent(this.path, this.isDirectory);
}
« no previous file with comments | « no previous file | pkg/watcher/lib/src/directory_watcher/linux.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698