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

Unified Diff: pkg/analyzer/lib/src/generated/sdk_io.dart

Issue 1026093002: Fix hints in the analyzer package. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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/analyzer/lib/src/generated/resolver.dart ('k') | pkg/analyzer/lib/task/model.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/sdk_io.dart
diff --git a/pkg/analyzer/lib/src/generated/sdk_io.dart b/pkg/analyzer/lib/src/generated/sdk_io.dart
index c962d2087944b4bab142f4b6a918e6e95fad8d9a..3a9f239c4cff0b5ea3a95d274232fe88d173b4bd 100644
--- a/pkg/analyzer/lib/src/generated/sdk_io.dart
+++ b/pkg/analyzer/lib/src/generated/sdk_io.dart
@@ -200,11 +200,6 @@ class DirectoryBasedDartSdk implements DartSdk {
JavaFile _dart2jsExecutable;
/**
- * The file containing the dart formatter executable.
- */
- JavaFile _dartFmtExecutable;
-
- /**
* The file containing the Dartium executable.
*/
JavaFile _dartiumExecutable;
@@ -354,7 +349,7 @@ class DirectoryBasedDartSdk implements DartSdk {
if (revision != null) {
_sdkVersion = revision.trim();
}
- } on FileSystemException catch (exception) {
+ } on FileSystemException {
// Fall through to return the default.
}
}
@@ -500,7 +495,7 @@ class DirectoryBasedDartSdk implements DartSdk {
file = new JavaFile.relative(file, relativePath);
}
return new FileBasedSource.con2(parseUriWithException(dartUri), file);
- } on URISyntaxException catch (exception) {
+ } on URISyntaxException {
return null;
}
}
« no previous file with comments | « pkg/analyzer/lib/src/generated/resolver.dart ('k') | pkg/analyzer/lib/task/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698