Index: pkg/analyzer/lib/file_system/file_system.dart |
diff --git a/pkg/analyzer/lib/file_system/file_system.dart b/pkg/analyzer/lib/file_system/file_system.dart |
index c2fb88f6e9dcaa597445a30d7aa2c0fa0d234499..a6580f565b405231d776e1b113d416d390ab9346 100644 |
--- a/pkg/analyzer/lib/file_system/file_system.dart |
+++ b/pkg/analyzer/lib/file_system/file_system.dart |
@@ -139,8 +139,8 @@ class ResourceUriResolver extends UriResolver { |
if (!_isFileUri(uri)) { |
return null; |
} |
- Resource resource = _provider.getResource(_provider.pathContext.fromUri(uri) |
- ); |
+ Resource resource = |
+ _provider.getResource(_provider.pathContext.fromUri(uri)); |
if (resource is File) { |
return resource.createSource(uri); |
} |